diff options
| author | Richard M. Stallman | 2002-02-03 10:36:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-02-03 10:36:49 +0000 |
| commit | fd91d0d468208be28c6a7187dd68e63dd22f47c0 (patch) | |
| tree | 921a58bec01313c5bd0163d1dbc83202f585edfd /src | |
| parent | 5150eeecd86d45af4e4107a33b4a0dd8752e2cba (diff) | |
| download | emacs-fd91d0d468208be28c6a7187dd68e63dd22f47c0.tar.gz emacs-fd91d0d468208be28c6a7187dd68e63dd22f47c0.zip | |
(Fdo_auto_save): Improve "auto save disabled" msg.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index b1b555fafc4..177d44aeae0 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -5671,7 +5671,7 @@ A non-nil CURRENT-ONLY argument means save only current buffer. */) | |||
| 5671 | { | 5671 | { |
| 5672 | /* It has shrunk too much; turn off auto-saving here. */ | 5672 | /* It has shrunk too much; turn off auto-saving here. */ |
| 5673 | minibuffer_auto_raise = orig_minibuffer_auto_raise; | 5673 | minibuffer_auto_raise = orig_minibuffer_auto_raise; |
| 5674 | message_with_string ("Buffer %s has shrunk a lot; auto save turned off there", | 5674 | message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save", |
| 5675 | b->name, 1); | 5675 | b->name, 1); |
| 5676 | minibuffer_auto_raise = 0; | 5676 | minibuffer_auto_raise = 0; |
| 5677 | /* Turn off auto-saving until there's a real save, | 5677 | /* Turn off auto-saving until there's a real save, |