From: Karl Heuer Date: Thu, 21 Dec 1995 17:56:09 +0000 (+0000) Subject: (makefile-font-lock-keywords): Fix bad structure X-Git-Tag: emacs-19.34~2056 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=34bb441e23e97a4ece0fcc8630d3ad1d86fa157c;p=emacs.git (makefile-font-lock-keywords): Fix bad structure for the "^\t+#" element. Add faces to menu only if window-system. (makefile-mode): Do not check if makefile-define-space-face is defined. Call it only if window-system. --- diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 8227f9a1138..ecda1c89744 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -223,7 +223,7 @@ not be enclosed in { } or ( ).") ;; Highlight shell comments that Make treats as commands, ;; since these can fool people. - '("^\t+#" makefile-space-face t) + '("^\t+#" 0 makefile-space-face t) ;; Highlight spaces that precede tabs. ;; They can make a tab fail to be effective.