diff options
| author | Andreas Schwab | 2002-12-28 01:04:02 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2002-12-28 01:04:02 +0000 |
| commit | 1ebc190a844e37a408a532be08ead50d5cd16910 (patch) | |
| tree | 9c8c8903fe341bbcee63142205b46e74fdd9cfcd | |
| parent | 5ea7adcc85bde756df818f7f6da70ba28f16548b (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/make-mode.el | 1 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-12-27 Miles Bader <miles@gnu.org> | 7 | 2002-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. |