diff options
| author | Miles Bader | 2002-10-28 08:17:27 +0000 |
|---|---|---|
| committer | Miles Bader | 2002-10-28 08:17:27 +0000 |
| commit | 5cc2d1375411a20049d512c5dbd7f71cbe965d27 (patch) | |
| tree | 92397748f015cf0224c97be1ca3717f04f73ec53 | |
| parent | dc2feacf153f81cbaadade3d56a5231619f14d09 (diff) | |
| download | emacs-5cc2d1375411a20049d512c5dbd7f71cbe965d27.tar.gz emacs-5cc2d1375411a20049d512c5dbd7f71cbe965d27.zip | |
(makefile-warn-continuations): Don't barf when there _aren't_ any
suspicious continuations.
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/progmodes/make-mode.el | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b39bc02837d..8b1d519a691 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,11 +1,17 @@ | |||
| 1 | 2002-10-28 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/make-mode.el (makefile-warn-continuations): Don't | ||
| 4 | barf when there _aren't_ any suspicious continuations. | ||
| 5 | |||
| 1 | 2002-10-28 Juanma Barranquero <lektu@terra.es> | 6 | 2002-10-28 Juanma Barranquero <lektu@terra.es> |
| 2 | 7 | ||
| 3 | * progmodes/compile.el (grep-find-use-xargs): Fix docstring. Patch from | 8 | * progmodes/compile.el (grep-find-use-xargs): Fix docstring. |
| 4 | Matt Swift <swift@alum.mit.edu>. | 9 | Patch from Matt Swift <swift@alum.mit.edu>. |
| 5 | 10 | ||
| 6 | 2002-10-27 Michael Kifer <kifer@cs.stonybrook.edu> | 11 | 2002-10-27 Michael Kifer <kifer@cs.stonybrook.edu> |
| 7 | 12 | ||
| 8 | * ediff-wind.el (ediff-control-frame-parameters): added scrollbar-height. | 13 | * ediff-wind.el (ediff-control-frame-parameters): added |
| 14 | scrollbar-height. | ||
| 9 | 15 | ||
| 10 | 2002-10-27 Andreas Schwab <schwab@suse.de> | 16 | 2002-10-27 Andreas Schwab <schwab@suse.de> |
| 11 | 17 | ||
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 1a53455f534..9bc950f9be5 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el | |||
| @@ -1393,7 +1393,7 @@ and generates the overview, one line per target name." | |||
| 1393 | (if (eq major-mode 'makefile-mode) | 1393 | (if (eq major-mode 'makefile-mode) |
| 1394 | (save-excursion | 1394 | (save-excursion |
| 1395 | (goto-char (point-min)) | 1395 | (goto-char (point-min)) |
| 1396 | (if (re-search-forward "\\\\[ \t]+$") | 1396 | (if (re-search-forward "\\\\[ \t]+$" nil t) |
| 1397 | (not (y-or-n-p | 1397 | (not (y-or-n-p |
| 1398 | (format "Suspicious continuation in line %d. Save anyway? " | 1398 | (format "Suspicious continuation in line %d. Save anyway? " |
| 1399 | (count-lines (point-min) (point))))))))) | 1399 | (count-lines (point-min) (point))))))))) |