# HG changeset patch # User Richard M. Stallman # Date 756622638 0 # Node ID aad805608eec095fdc15e6451a3dea8432ed87e5 # Parent da52825a38809071f42b2729522f35552c031176 (makefile-ignored-files-in-pickup-regex): Supply missing \\. (makefile-insert-target-ref): Fix typo. diff -r da52825a3880 -r aad805608eec lisp/progmodes/make-mode.el --- 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)))