aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-03-02 03:47:51 +0000
committerRichard M. Stallman1994-03-02 03:47:51 +0000
commitcf3540e492c6210eae1e343b2851f1413721c3b9 (patch)
treeae2dc0e10ea133a48cd13f1778e8e4c36724cfe2 /src/alloc.c
parent9d58218c8209415442d99cdf3a69db96f932b682 (diff)
downloademacs-cf3540e492c6210eae1e343b2851f1413721c3b9.tar.gz
emacs-cf3540e492c6210eae1e343b2851f1413721c3b9.zip
(memory_signal_data): No longer static.
(syms_of_alloc): Stick Qerror onto memory_signal_data.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index f19ca3fb24c..2ced2717cdc 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -99,7 +99,7 @@ int pureptr;
99char *pending_malloc_warning; 99char *pending_malloc_warning;
100 100
101/* Pre-computed signal argument for use when memory is exhausted. */ 101/* Pre-computed signal argument for use when memory is exhausted. */
102static Lisp_Object memory_signal_data; 102Lisp_Object memory_signal_data;
103 103
104/* Maximum amount of C stack to save when a GC happens. */ 104/* Maximum amount of C stack to save when a GC happens. */
105 105
@@ -2224,7 +2224,8 @@ which includes both saved text and other data.");
2224 2224
2225 /* We build this in advance because if we wait until we need it, we might 2225 /* We build this in advance because if we wait until we need it, we might
2226 not be able to allocate the memory to hold it. */ 2226 not be able to allocate the memory to hold it. */
2227 memory_signal_data = Fcons (build_string ("Memory exhausted"), Qnil); 2227 memory_signal_data
2228 = Fcons (Qerror, Fcons (build_string ("Memory exhausted"), Qnil));
2228 staticpro (&memory_signal_data); 2229 staticpro (&memory_signal_data);
2229 2230
2230 defsubr (&Scons); 2231 defsubr (&Scons);