diff options
| author | Karl Heuer | 1997-10-27 03:50:50 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-10-27 03:50:50 +0000 |
| commit | 30e0071c9e56b28874b932bfa792a2461ad43810 (patch) | |
| tree | 2f5029c06500efb17d3314f60c5be1b2664d7197 /src/buffer.c | |
| parent | 210308cc9caf3efb4e1c0ea002800b81ead8f060 (diff) | |
| download | emacs-30e0071c9e56b28874b932bfa792a2461ad43810.tar.gz emacs-30e0071c9e56b28874b932bfa792a2461ad43810.zip | |
(Fkill_buffer): Don't assume buffer is current.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 1114 | /* Delete any auto-save file, if we saved it in this session. */ | 1114 | /* Delete any auto-save file, if we saved it in this session. */ |
| 1115 | if (STRINGP (b->auto_save_file_name) | 1115 | if (STRINGP (b->auto_save_file_name) |
| 1116 | && b->auto_save_modified != 0 | 1116 | && b->auto_save_modified != 0 |
| 1117 | && SAVE_MODIFF < b->auto_save_modified) | 1117 | && BUF_SAVE_MODIFF (b) < b->auto_save_modified) |
| 1118 | { | 1118 | { |
| 1119 | Lisp_Object tem; | 1119 | Lisp_Object tem; |
| 1120 | tem = Fsymbol_value (intern ("delete-auto-save-files")); | 1120 | tem = Fsymbol_value (intern ("delete-auto-save-files")); |