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 63fd973ffce..6da0ac428ab 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -413,11 +413,11 @@ buffer_memory_full (ptrdiff_t nbytes)
413 413
414#ifndef REL_ALLOC 414#ifndef REL_ALLOC
415 memory_full (nbytes); 415 memory_full (nbytes);
416#endif 416#else
417
418 /* This used to call error, but if we've run out of memory, we could 417 /* This used to call error, but if we've run out of memory, we could
419 get infinite recursion trying to build the string. */ 418 get infinite recursion trying to build the string. */
420 xsignal (Qnil, Vmemory_signal_data); 419 xsignal (Qnil, Vmemory_signal_data);
420#endif
421} 421}
422 422
423/* A common multiple of the positive integers A and B. Ideally this 423/* A common multiple of the positive integers A and B. Ideally this