aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-12-23 04:57:18 +0000
committerRichard M. Stallman1993-12-23 04:57:18 +0000
commit0c5b5a13c963c75b46a3345ce72762d749cbf4aa (patch)
treeb6b6b71592da4830cb52876debbdb4aa5dfd7c43
parente6945ec7802c66960d0376bdae0b0c7b13d698a7 (diff)
downloademacs-0c5b5a13c963c75b46a3345ce72762d749cbf4aa.tar.gz
emacs-0c5b5a13c963c75b46a3345ce72762d749cbf4aa.zip
(makefile-ignored-files-in-pickup-regex): Supply missing \\.
(makefile-insert-target-ref): Fix typo.
-rw-r--r--lisp/progmodes/make-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 52b08f2c99f..28334b7489f 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -18,7 +18,7 @@
18 18
19;; So, for the meantime, this is not the default mode for makefiles. 19;; So, for the meantime, this is not the default mode for makefiles.
20 20
21;; $Id: makefile.el,v 1.8 1993/05/06 01:30:26 rms Exp jimb $ 21;; $Id: makefile.el,v 1.9 1993/06/09 11:54:21 jimb Exp $
22 22
23;; This file is part of GNU Emacs. 23;; This file is part of GNU Emacs.
24 24
@@ -169,7 +169,7 @@ not be enclosed in { } or ( ).")
169 "Regex used to find macro assignment lines in a makefile.") 169 "Regex used to find macro assignment lines in a makefile.")
170 170
171(defconst makefile-ignored-files-in-pickup-regex 171(defconst makefile-ignored-files-in-pickup-regex
172 "\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|(\\.[chy]\\)" 172 "\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|\\(\\.[chy]\\)"
173 "Regex for filenames that will NOT be included in the target list.") 173 "Regex for filenames that will NOT be included in the target list.")
174 174
175;;; ------------------------------------------------------------ 175;;; ------------------------------------------------------------
@@ -518,7 +518,7 @@ Anywhere else just insert a dot."
518 "Complete on a list of known targets, then insert target-ref at (point) ." 518 "Complete on a list of known targets, then insert target-ref at (point) ."
519 (interactive 519 (interactive
520 (list 520 (list
521 (pogn 521 (progn
522 (makefile-pickup-targets) 522 (makefile-pickup-targets)
523 (completing-read "Refer to target: " makefile-target-table nil nil nil)))) 523 (completing-read "Refer to target: " makefile-target-table nil nil nil))))
524 (if (not (zerop (length target-name))) 524 (if (not (zerop (length target-name)))