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
38da540d
Commit
38da540d
authored
Dec 29, 2001
by
Richard M. Stallman
Browse files
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
parent
e8042313
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
src/fileio.c
src/fileio.c
+10
-4
No files found.
src/fileio.c
View file @
38da540d
...
...
@@ -5539,7 +5539,16 @@ A non-nil CURRENT-ONLY argument means save only current buffer. */)
Lisp_Object lispstream;
int count = specpdl_ptr - specpdl;
int orig_minibuffer_auto_raise = minibuffer_auto_raise;
int
message_p
=
push_message
();
int message_p = 0;
if (max_specpdl_size < specpdl_size + 40)
max_specpdl_size = specpdl_size + 40;
if (minibuf_level)
no_message = Qt;
if (NILP (no_message));
message_p = push_message ();
/* Ordinarily don't quit within this function,
but don't make it impossible to quit (in case we get hung in I/O). */
...
...
@@ -5549,9 +5558,6 @@ A non-nil CURRENT-ONLY argument means save only current buffer. */)
/* No GCPRO needed, because (when it matters) all Lisp_Object variables
point to non-strings reached from Vbuffer_alist. */
if
(
minibuf_level
)
no_message
=
Qt
;
if (!NILP (Vrun_hooks))
call1 (Vrun_hooks, intern ("auto-save-hook"));
...
...
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