]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-font-lock-keywords): Highlight
authorAndreas Schwab <schwab@suse.de>
Sat, 28 Dec 2002 01:04:02 +0000 (01:04 +0000)
committerAndreas Schwab <schwab@suse.de>
Sat, 28 Dec 2002 01:04:02 +0000 (01:04 +0000)
automatic variable references enclosed in parens and optionally
suffixed by F or D.

lisp/ChangeLog
lisp/progmodes/make-mode.el

index fb1984d80e51d492c177b59fcafe66c7f408258d..90137aa33613c7f83b23389d7fd9235887b95f2b 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-28  Andreas Schwab  <schwab@suse.de>
+
+       * progmodes/make-mode.el (makefile-font-lock-keywords): Highlight
+       automatic variable references enclosed in parens and optionally
+       suffixed by F or D.
+
 2002-12-27  Miles Bader  <miles@gnu.org>
 
        * info.el (Info-complete-menu-item): Make `Info-complete-cache' a
index f3255fc5e49b039a7816fad80e96157e344ef692..62cbdbb291d350d0692c1c26c63eb35e4c0dc4bb 100644 (file)
@@ -273,6 +273,7 @@ not be enclosed in { } or ( )."
 
    ;; Automatic variable references.
    '("\\$\\([@%<?^+*]\\)" 1 font-lock-reference-face prepend)
+   '("\\$[({]\\([@%<?^+*][FD]?\\)[}):]" 1 font-lock-reference-face prepend)
 
    ;; Fontify conditionals and includes.
    ;; Note that plain `if' is an automake conditional, and not a bug.