aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 4d62018fb0a..56d4ecf1409 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -175,6 +175,9 @@ memory_warning_signal (sig)
175 signal (sig, memory_warning_signal); 175 signal (sig, memory_warning_signal);
176 176
177 malloc_warning ("Operating system warns that virtual memory is running low.\n"); 177 malloc_warning ("Operating system warns that virtual memory is running low.\n");
178
179 /* It might be unsafe to call do_auto_save now. */
180 force_auto_save_soon ();
178} 181}
179#endif 182#endif
180 183