1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(makefile-warn-continuations): Don't barf when there _aren't_ any

suspicious continuations.
This commit is contained in:
Miles Bader 2002-10-28 08:17:27 +00:00
parent dc2feacf15
commit 5cc2d13754
2 changed files with 10 additions and 4 deletions

View 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>

View 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)))))))))