]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-dependency-regex): Disallow "=" in name,
authorKarl Heuer <kwzh@gnu.org>
Tue, 11 Mar 1997 22:23:36 +0000 (22:23 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 11 Mar 1997 22:23:36 +0000 (22:23 +0000)
so that "flags=-o:1" is treated as an assignment, not a dependency.
(makefile-dependency-regex, makefile-macroassign-regex): Disallow
spaces in symbol name.

lisp/progmodes/make-mode.el

index 25aaf3b8cf7d600bb0ec73b153cb47eb06181fe0..7c7580a7f20b843e12f33f1b46fa421e700a546c 100644 (file)
@@ -188,14 +188,14 @@ not be enclosed in { } or ( ).")
 ;; that if you change this regexp you must fix the imenu index
 ;; function defined at the end of the file.
 (defconst makefile-dependency-regex
-  "^ *\\([^\n\t#:]+\\([ \t]+[^ \t\n#:]+\\)*\\)[ \t]*:\\([ \t]*$\\|\\([^=\n].*$\\)\\)"
+  "^ *\\([^ \n\t#:=]+\\([ \t]+[^ \t\n#:=]+\\)*\\)[ \t]*:\\([ \t]*$\\|\\([^=\n].*$\\)\\)"
   "Regex used to find dependency lines in a makefile.")
 
 ;; Note that the first subexpression is used by font lock.  Note that
 ;; if you change this regexp you must fix the imenu index function
 ;; defined at the end of the file.
 (defconst makefile-macroassign-regex
-  "^ *\\([^\n\t][^:#= \t\n]*\\)[ \t]*[*:+]?:?="
+  "^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*[*:+]?:?="
   "Regex used to find macro assignment lines in a makefile.")
 
 (defconst makefile-ignored-files-in-pickup-regex