]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-warn-continuations): Don't barf when there _aren't_ any
authorMiles Bader <miles@gnu.org>
Mon, 28 Oct 2002 08:17:27 +0000 (08:17 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 28 Oct 2002 08:17:27 +0000 (08:17 +0000)
suspicious continuations.

lisp/ChangeLog
lisp/progmodes/make-mode.el

index b39bc02837df654e12a8995e88e12ec7b520b204..8b1d519a6911f99e3455989dbf5b07f8c2721b7d 100644 (file)
@@ -1,11 +1,17 @@
+2002-10-28  Miles Bader  <miles@gnu.org>
+
+       * progmodes/make-mode.el (makefile-warn-continuations): Don't
+       barf when there _aren't_ any suspicious continuations.
+
 2002-10-28  Juanma Barranquero  <lektu@terra.es>
 
-       * progmodes/compile.el (grep-find-use-xargs): Fix docstring.  Patch from
-       Matt Swift <swift@alum.mit.edu>.
+       * progmodes/compile.el (grep-find-use-xargs): Fix docstring.
+       Patch from Matt Swift <swift@alum.mit.edu>.
 
 2002-10-27  Michael Kifer  <kifer@cs.stonybrook.edu>
 
-       * ediff-wind.el (ediff-control-frame-parameters): added scrollbar-height.
+       * ediff-wind.el (ediff-control-frame-parameters): added
+       scrollbar-height.
 
 2002-10-27  Andreas Schwab  <schwab@suse.de>
 
index 1a53455f534bc14826c2c454cf7be060f039bd77..9bc950f9be5604c4d391ae1b635238d37217b572 100644 (file)
@@ -1393,7 +1393,7 @@ and generates the overview, one line per target name."
   (if (eq major-mode 'makefile-mode)
       (save-excursion
        (goto-char (point-min))
-       (if (re-search-forward "\\\\[ \t]+$")
+       (if (re-search-forward "\\\\[ \t]+$" nil t)
            (not (y-or-n-p
                  (format "Suspicious continuation in line %d. Save anyway? "
                          (count-lines (point-min) (point)))))))))