changeset 5312:aad805608eec

(makefile-ignored-files-in-pickup-regex): Supply missing \\. (makefile-insert-target-ref): Fix typo.
author Richard M. Stallman <rms@gnu.org>
date Thu, 23 Dec 1993 04:57:18 +0000
parents da52825a3880
children 3189e46001fd
files lisp/progmodes/make-mode.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/make-mode.el	Thu Dec 23 04:56:43 1993 +0000
+++ b/lisp/progmodes/make-mode.el	Thu Dec 23 04:57:18 1993 +0000
@@ -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 @@
   "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 @@
   "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)))