aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-02-07 04:07:14 +0000
committerRichard M. Stallman1999-02-07 04:07:14 +0000
commit3b7f63b13fde224c5b0cf76a9dea51e820f1d93e (patch)
tree7880810a9246bd613b642be888c3f0bab8406aa5
parent0cff96e7cee5f808876ba09c91aaa25e1c311422 (diff)
downloademacs-3b7f63b13fde224c5b0cf76a9dea51e820f1d93e.tar.gz
emacs-3b7f63b13fde224c5b0cf76a9dea51e820f1d93e.zip
Comment changes.
-rw-r--r--lisp/progmodes/make-mode.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 7a18bebcce6..9a0d957ba57 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -231,15 +231,15 @@ not be enclosed in { } or ( )."
231 :group 'makefile) 231 :group 'makefile)
232 232
233;; Note that the first big subexpression is used by font lock. Note 233;; Note that the first big subexpression is used by font lock. Note
234;; that if you change this regexp you must fix the imenu index 234;; that if you change this regexp you might have to fix the imenu
235;; function defined at the end of the file. 235;; index in makefile-imenu-generic-expression.
236(defconst makefile-dependency-regex 236(defconst makefile-dependency-regex
237 "^ *\\([^ \n\t#:=]+\\([ \t]+\\([^ \t\n#:=]+\\|\\$[({][^ \t\n#})]+[})]\\)\\)*\\)[ \t]*:\\([ \t]*$\\|\\([^=\n].*$\\)\\)" 237 "^ *\\([^ \n\t#:=]+\\([ \t]+\\([^ \t\n#:=]+\\|\\$[({][^ \t\n#})]+[})]\\)\\)*\\)[ \t]*:\\([ \t]*$\\|\\([^=\n].*$\\)\\)"
238 "Regex used to find dependency lines in a makefile.") 238 "Regex used to find dependency lines in a makefile.")
239 239
240;; Note that the first subexpression is used by font lock. Note that 240;; Note that the first subexpression is used by font lock. Note
241;; if you change this regexp you must fix the imenu index function 241;; that if you change this regexp you might have to fix the imenu
242;; defined at the end of the file. 242;; index in makefile-imenu-generic-expression.
243(defconst makefile-macroassign-regex 243(defconst makefile-macroassign-regex
244 "^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*[*:+]?:?=" 244 "^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*[*:+]?:?="
245 "Regex used to find macro assignment lines in a makefile.") 245 "Regex used to find macro assignment lines in a makefile.")
@@ -1483,7 +1483,7 @@ Uses `makefile-use-curly-braces-for-macros-p'."
1483 1483
1484 1484
1485 1485
1486;;; Support for other packages, like add-log and imenu. 1486;;; Support for other packages, like add-log.
1487 1487
1488(defun makefile-add-log-defun () 1488(defun makefile-add-log-defun ()
1489 "Return name of target or variable assignment that point is in. 1489 "Return name of target or variable assignment that point is in.