emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/make-mode.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/make-mode.el
Date: Wed, 26 Nov 2003 11:49:34 -0500

Index: emacs/lisp/progmodes/make-mode.el
diff -c emacs/lisp/progmodes/make-mode.el:1.84 
emacs/lisp/progmodes/make-mode.el:1.85
*** emacs/lisp/progmodes/make-mode.el:1.84      Mon Sep  1 11:45:35 2003
--- emacs/lisp/progmodes/make-mode.el   Wed Nov 26 11:49:33 2003
***************
*** 301,309 ****
     '("^\\( +\\)\t" 1 makefile-space-face)))
  
  (defconst makefile-font-lock-syntactic-keywords
!   (list
!    ;; Change the syntax of a quoted newline so that it does not end a comment.
!    '("\\\\\n" 0 " ")))
  
  (defvar makefile-imenu-generic-expression
    (list
--- 301,314 ----
     '("^\\( +\\)\t" 1 makefile-space-face)))
  
  (defconst makefile-font-lock-syntactic-keywords
!   ;; From sh-script.el.
!   ;; A `#' begins a comment in sh when it is unquoted and at the beginning
!   ;; of a word.  In the shell, words are separated by metacharacters.
!   ;; The list of special chars is taken from the single-unix spec of the
!   ;; shell command language (under `quoting') but with `$' removed.
!   '(("[^|&;<>()`\\\"' \t\n]\\(#+\\)" 1 "_")
!     ;; Change the syntax of a quoted newline so that it does not end a 
comment.
!     ("\\\\\n" 0 ".")))
  
  (defvar makefile-imenu-generic-expression
    (list




reply via email to

[Prev in Thread] Current Thread [Next in Thread]