Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5cc2d137
Commit
5cc2d137
authored
Oct 28, 2002
by
Miles Bader
Browse files
(makefile-warn-continuations): Don't barf when there _aren't_ any
suspicious continuations.
parent
dc2feacf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
lisp/ChangeLog
lisp/ChangeLog
+9
-3
lisp/progmodes/make-mode.el
lisp/progmodes/make-mode.el
+1
-1
No files found.
lisp/ChangeLog
View file @
5cc2d137
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>
...
...
lisp/progmodes/make-mode.el
View file @
5cc2d137
...
...
@@ -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
)))))))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment