aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2002-12-28 01:04:02 +0000
committerAndreas Schwab2002-12-28 01:04:02 +0000
commit1ebc190a844e37a408a532be08ead50d5cd16910 (patch)
tree9c8c8903fe341bbcee63142205b46e74fdd9cfcd
parent5ea7adcc85bde756df818f7f6da70ba28f16548b (diff)
downloademacs-1ebc190a844e37a408a532be08ead50d5cd16910.tar.gz
emacs-1ebc190a844e37a408a532be08ead50d5cd16910.zip
(makefile-font-lock-keywords): Highlight
automatic variable references enclosed in parens and optionally suffixed by F or D.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/progmodes/make-mode.el1
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fb1984d80e5..90137aa3361 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-12-28 Andreas Schwab <schwab@suse.de>
2
3 * progmodes/make-mode.el (makefile-font-lock-keywords): Highlight
4 automatic variable references enclosed in parens and optionally
5 suffixed by F or D.
6
12002-12-27 Miles Bader <miles@gnu.org> 72002-12-27 Miles Bader <miles@gnu.org>
2 8
3 * info.el (Info-complete-menu-item): Make `Info-complete-cache' a 9 * info.el (Info-complete-menu-item): Make `Info-complete-cache' a
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index f3255fc5e49..62cbdbb291d 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -273,6 +273,7 @@ not be enclosed in { } or ( )."
273 273
274 ;; Automatic variable references. 274 ;; Automatic variable references.
275 '("\\$\\([@%<?^+*]\\)" 1 font-lock-reference-face prepend) 275 '("\\$\\([@%<?^+*]\\)" 1 font-lock-reference-face prepend)
276 '("\\$[({]\\([@%<?^+*][FD]?\\)[}):]" 1 font-lock-reference-face prepend)
276 277
277 ;; Fontify conditionals and includes. 278 ;; Fontify conditionals and includes.
278 ;; Note that plain `if' is an automake conditional, and not a bug. 279 ;; Note that plain `if' is an automake conditional, and not a bug.