1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-06 20:49:33 +00:00

(dcl-font-lock-keywords): Add underscore to "f$ lexicals" regexp.

This commit is contained in:
Thien-Thi Nguyen 2005-03-21 07:44:22 +00:00
parent 10c8e594f6
commit 7651545c10
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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))