aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1995-12-21 17:56:09 +0000
committerKarl Heuer1995-12-21 17:56:09 +0000
commit34bb441e23e97a4ece0fcc8630d3ad1d86fa157c (patch)
tree5069e19d34f80fc6478c77463af71fd49a81387d /lisp
parent22466c0996c5b6d03a1006fb200558fddb35c54f (diff)
downloademacs-34bb441e23e97a4ece0fcc8630d3ad1d86fa157c.tar.gz
emacs-34bb441e23e97a4ece0fcc8630d3ad1d86fa157c.zip
(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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/make-mode.el2
1 files changed, 1 insertions, 1 deletions
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 ( ).")
223 223
224 ;; Highlight shell comments that Make treats as commands, 224 ;; Highlight shell comments that Make treats as commands,
225 ;; since these can fool people. 225 ;; since these can fool people.
226 '("^\t+#" makefile-space-face t) 226 '("^\t+#" 0 makefile-space-face t)
227 227
228 ;; Highlight spaces that precede tabs. 228 ;; Highlight spaces that precede tabs.
229 ;; They can make a tab fail to be effective. 229 ;; They can make a tab fail to be effective.