diff options
| -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. |