diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-02-07 04:07:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-02-07 04:07:14 +0000 |
commit | 0800c4acc3cc0539810c52135f7c3339c6acb68b (patch) | |
tree | c7a5e409ce1112d800c481c9be408cefc9761dc3 /lisp | |
parent | 48e486ab016a671caa947766d772f39ebedef5e2 (diff) | |
download | emacs-0800c4acc3cc0539810c52135f7c3339c6acb68b.tar.gz |
Comment changes.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/make-mode.el | 12 |
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 ( )." :group 'makefile) ;; Note that the first big 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. +;; that if you change this regexp you might have to fix the imenu +;; index in makefile-imenu-generic-expression. (defconst makefile-dependency-regex "^ *\\([^ \n\t#:=]+\\([ \t]+\\([^ \t\n#:=]+\\|\\$[({][^ \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. +;; Note that the first subexpression is used by font lock. Note +;; that if you change this regexp you might have to fix the imenu +;; index in makefile-imenu-generic-expression. (defconst makefile-macroassign-regex "^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*[*:+]?:?=" "Regex used to find macro assignment lines in a makefile.") @@ -1483,7 +1483,7 @@ Uses `makefile-use-curly-braces-for-macros-p'." -;;; Support for other packages, like add-log and imenu. +;;; Support for other packages, like add-log. (defun makefile-add-log-defun () "Return name of target or variable assignment that point is in. |