From: Richard M. Stallman Date: Thu, 23 Dec 1993 04:57:18 +0000 (+0000) Subject: (makefile-ignored-files-in-pickup-regex): Supply missing \\. X-Git-Tag: emacs-19.34~10539 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c5b5a13c963c75b46a3345ce72762d749cbf4aa;p=emacs.git (makefile-ignored-files-in-pickup-regex): Supply missing \\. (makefile-insert-target-ref): Fix typo. --- 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 @@ ;; 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)))