Mercurial > emacs
changeset 35175:e5a437efe234
(do_auto_save_unwind): Do the pop_message here
instead of in Fdo_auto_save.
(Fdo_auto_save): Don't call pop_message.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 09 Jan 2001 13:46:28 +0000 |
parents | 96c7c0a356aa |
children | 3f757ef80d7d |
files | src/fileio.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fileio.c Tue Jan 09 13:45:38 2001 +0000 +++ b/src/fileio.c Tue Jan 09 13:46:28 2001 +0000 @@ -1,5 +1,5 @@ /* File IO for GNU Emacs. - Copyright (C) 1985,86,87,88,93,94,95,96,97,98,99,2000 + Copyright (C) 1985,86,87,88,93,94,95,96,97,98,99,2000, 2001 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -5279,6 +5279,7 @@ if (!NILP (stream)) fclose ((FILE *) (XFASTINT (XCAR (stream)) << 16 | XFASTINT (XCDR (stream)))); + pop_message (); return Qnil; } @@ -5474,7 +5475,6 @@ Vquit_flag = oquit; - pop_message (); unbind_to (count, Qnil); return Qnil; }