diff lisp/modes/make-mode.el @ 126:1370575f1259 xemacs-20-1p1

Import from CVS: tag xemacs-20-1p1
author cvs
date Mon, 13 Aug 2007 09:27:39 +0200
parents 9b50b4588a93
children 28f395d8dc7a
line wrap: on
line diff
--- a/lisp/modes/make-mode.el	Mon Aug 13 09:26:41 2007 +0200
+++ b/lisp/modes/make-mode.el	Mon Aug 13 09:27:39 2007 +0200
@@ -297,15 +297,15 @@
 
    ;; Highlight lines that contain just whitespace.
    ;; They can cause trouble, especially if they start with a tab.
-   '("^[ \t]+$" . 'makefile-space-face)
+   '("^[ \t]+$" . makefile-space-face)
 
    ;; Highlight shell comments that Make treats as commands,
    ;; since these can fool people.
-   '("^\t+#" 0 'makefile-space-face t)
+   '("^\t+#" 0 makefile-space-face t)
 
    ;; Highlight spaces that precede tabs.
    ;; They can make a tab fail to be effective.
-   '("^\\( +\\)\t" 1 'makefile-space-face)))
+   '("^\\( +\\)\t" 1 makefile-space-face)))
   "Additional expressions to highlight in makefiles")
 
 (put 'makefile-mode 'font-lock-defaults '(makefile-font-lock-keywords))