aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 6241cde424b..b009157cc33 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6401,8 +6401,8 @@ This means that certain objects should be allocated in shared (pure) space. */)
6401 /* We build this in advance because if we wait until we need it, we might 6401 /* We build this in advance because if we wait until we need it, we might
6402 not be able to allocate the memory to hold it. */ 6402 not be able to allocate the memory to hold it. */
6403 Vmemory_signal_data 6403 Vmemory_signal_data
6404 = list2 (Qerror, 6404 = pure_cons (Qerror,
6405 build_string ("Memory exhausted--use M-x save-some-buffers then exit and restart Emacs")); 6405 pure_cons (make_pure_c_string ("Memory exhausted--use M-x save-some-buffers then exit and restart Emacs"), Qnil));
6406 6406
6407 DEFVAR_LISP ("memory-full", &Vmemory_full, 6407 DEFVAR_LISP ("memory-full", &Vmemory_full,
6408 doc: /* Non-nil means Emacs cannot get much more Lisp memory. */); 6408 doc: /* Non-nil means Emacs cannot get much more Lisp memory. */);