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: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/make-mode.el
Date: Mon, 24 Feb 2003 18:49:28 -0500

Index: emacs/lisp/progmodes/make-mode.el
diff -c emacs/lisp/progmodes/make-mode.el:1.81 
emacs/lisp/progmodes/make-mode.el:1.82
*** emacs/lisp/progmodes/make-mode.el:1.81      Wed Feb 12 10:49:41 2003
--- emacs/lisp/progmodes/make-mode.el   Mon Feb 24 18:49:27 2003
***************
*** 1,6 ****
  ;;; make-mode.el --- makefile editing commands for Emacs
  
! ;; Copyright (C) 1992,94,99,2000,2001, 2002  Free Software Foundation, Inc.
  
  ;; Author: Thomas Neumann <address@hidden>
  ;;    Eric S. Raymond <address@hidden>
--- 1,6 ----
  ;;; make-mode.el --- makefile editing commands for Emacs
  
! ;; Copyright (C) 1992,94,99,2000,2001, 2002, 2003  Free Software Foundation, 
Inc.
  
  ;; Author: Thomas Neumann <address@hidden>
  ;;    Eric S. Raymond <address@hidden>
***************
*** 269,282 ****
     (list makefile-dependency-regex 1 'font-lock-function-name-face)
  
     ;; Variable references even in targets/strings/comments.
!    '("\\$[({]\\([-a-zA-Z0-9_.]+\\|address@hidden<?^+*][FD]?\\)[}):]"
       1 font-lock-constant-face prepend)
  
!    ;; Automatic variable references and single character variable 
references...
!    '("\\$\\(address@hidden<?^+*_]\\|[a-zA-Z0-9]\\>\\)" 1 
font-lock-constant-face prepend)
! 
!    ;; ...but not shell variables references.
!    '("\\$\\$\\(\\sw+\\)" 1 'default t)
  
     ;; Fontify conditionals and includes.
     ;; Note that plain `if' is an automake conditional, and not a bug.
--- 269,281 ----
     (list makefile-dependency-regex 1 'font-lock-function-name-face)
  
     ;; Variable references even in targets/strings/comments.
!    '("[^$]\\$[({]\\([-a-zA-Z0-9_.]+\\|address@hidden<?^+*][FD]?\\)[}):]"
       1 font-lock-constant-face prepend)
  
!    ;; Automatic variable references and single character variable references,
!    ;; but not shell variables references.
!    '("[^$]\\$\\(address@hidden<?^+*_]\\|[a-zA-Z0-9]\\>\\)"
!      1 font-lock-constant-face prepend)
  
     ;; Fontify conditionals and includes.
     ;; Note that plain `if' is an automake conditional, and not a bug.




reply via email to

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