]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-ignored-files-in-pickup-regex): Supply missing \\.
authorRichard M. Stallman <rms@gnu.org>
Thu, 23 Dec 1993 04:57:18 +0000 (04:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 23 Dec 1993 04:57:18 +0000 (04:57 +0000)
(makefile-insert-target-ref): Fix typo.

lisp/progmodes/make-mode.el

index 52b08f2c99fa11a1d575e65846deb8fa354074fd..28334b7489f7061ca7b3c57f4daed8316d70ef76 100644 (file)
@@ -18,7 +18,7 @@
 
 ;; So, for the meantime, this is not the default mode for makefiles.
 
-;; $Id: makefile.el,v 1.8 1993/05/06 01:30:26 rms Exp jimb $
+;; $Id: makefile.el,v 1.9 1993/06/09 11:54:21 jimb Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -169,7 +169,7 @@ not be enclosed in { } or ( ).")
   "Regex used to find macro assignment lines in a makefile.")
 
 (defconst makefile-ignored-files-in-pickup-regex
-  "\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|(\\.[chy]\\)"
+  "\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|\\(\\.[chy]\\)"
   "Regex for filenames that will NOT be included in the target list.")
 
 ;;; ------------------------------------------------------------
@@ -518,7 +518,7 @@ Anywhere else just insert a dot."
   "Complete on a list of known targets, then insert target-ref at (point) ."
   (interactive
    (list
-    (pogn
+    (progn
      (makefile-pickup-targets)
      (completing-read "Refer to target: " makefile-target-table nil nil nil))))
    (if (not (zerop (length target-name)))