diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-03-21 07:44:22 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-03-21 07:44:22 +0000 |
commit | 7651545c1072b973dd518d58686e18c86f840a87 (patch) | |
tree | c54e14aedd78850bac443df00532fa60252b9ffc /lisp | |
parent | 10c8e594f6e658408eb64acb46d66e7658ee9b6c (diff) | |
download | emacs-7651545c1072b973dd518d58686e18c86f840a87.tar.gz |
(dcl-font-lock-keywords): Add underscore to "f$ lexicals" regexp.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/dcl-mode.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f9cad483232..acf70150ce2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-03-21 Thien-Thi Nguyen <ttn@gnu.org> + + * progmodes/dcl-mode.el (dcl-font-lock-keywords): + Add underscore to "f$ lexicals" regexp. + 2005-03-20 Juri Linkov <juri@jurta.org> * subr.el (progress-reporter-do-update): When `min-value' is equal diff --git a/lisp/progmodes/dcl-mode.el b/lisp/progmodes/dcl-mode.el index 81ed7780a64..b52e004e5bb 100644 --- a/lisp/progmodes/dcl-mode.el +++ b/lisp/progmodes/dcl-mode.el @@ -78,7 +78,7 @@ (defvar dcl-font-lock-keywords '(("\\<\\(if\\|then\\|else\\|endif\\)\\>" 1 font-lock-keyword-face) - ("\\<f[$][a-z]+\\>" + ("\\<f[$][a-z_]+\\>" 0 font-lock-builtin-face) ("[.]\\(eq\\|not\\|or\\|and\\|lt\\|gt\\|le\\|ge\\|eqs\\|nes\\)[.]" 0 font-lock-builtin-face)) |