summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2005-03-21 07:51:06 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2005-03-21 07:51:06 +0000
commit0a379b1c1f40efeb5de4cfac2408469dda217d13 (patch)
tree674a9bb79a0628d184848cd71f67c60a58a51b15
parent89344ac3220b5745069b607fad742ef639bada9b (diff)
downloademacs-0a379b1c1f40efeb5de4cfac2408469dda217d13.tar.gz
(dcl-font-lock-keywords): Add underscore to "f$ lexicals" regexp.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/dcl-mode.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 50177e9a446..19ee85f3082 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-17 Thien-Thi Nguyen <ttn@gnu.org>
* progmodes/dcl-mode.el (dcl-calc-cont-indent-relative): Doc fix.
diff --git a/lisp/progmodes/dcl-mode.el b/lisp/progmodes/dcl-mode.el
index 4b2cefb402b..f323a24e492 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))