From 30e0071c9e56b28874b932bfa792a2461ad43810 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 27 Oct 1997 03:50:50 +0000 Subject: [PATCH] (Fkill_buffer): Don't assume buffer is current. --- src/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")); -- 2.39.2