comparison src/emacs.c @ 7223:38931e897e56

(memory_warning_signal): Call force_auto_save_soon.
author Richard M. Stallman <rms@gnu.org>
date Sat, 30 Apr 1994 07:39:01 +0000
parents d5927b5a3da1
children e96f67e55921
comparison
equal deleted inserted replaced
7222:3dae5675cd3e 7223:38931e897e56
173 int sig; 173 int sig;
174 { 174 {
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
181 /* Code for dealing with Lisp access to the Unix command line */ 184 /* Code for dealing with Lisp access to the Unix command line */
182 185