From: Karl Heuer Date: Mon, 27 Oct 1997 03:50:50 +0000 (+0000) Subject: (Fkill_buffer): Don't assume buffer is current. X-Git-Tag: emacs-20.3~2887 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=30e0071c9e56b28874b932bfa792a2461ad43810;p=emacs.git (Fkill_buffer): Don't assume buffer is current. --- diff --git a/src/buffer.c b/src/buffer.c index 5bb80523c10..51b7ad03857 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1114,7 +1114,7 @@ with SIGHUP.") /* Delete any auto-save file, if we saved it in this session. */ if (STRINGP (b->auto_save_file_name) && b->auto_save_modified != 0 - && SAVE_MODIFF < b->auto_save_modified) + && BUF_SAVE_MODIFF (b) < b->auto_save_modified) { Lisp_Object tem; tem = Fsymbol_value (intern ("delete-auto-save-files"));