changeset 48980:1735ba4bf05b

(makefile-font-lock-keywords): Highlight automatic variable references enclosed in parens and optionally suffixed by F or D.
author Andreas Schwab <schwab@suse.de>
date Sat, 28 Dec 2002 01:02:40 +0000
parents 81b2338bea6e
children fc384425a67f
files lisp/progmodes/make-mode.el
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/make-mode.el	Fri Dec 27 23:35:36 2002 +0000
+++ b/lisp/progmodes/make-mode.el	Sat Dec 28 01:02:40 2002 +0000
@@ -273,6 +273,7 @@
 
    ;; 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.