aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorJoakim Verona2013-03-26 15:31:46 +0100
committerJoakim Verona2013-03-26 15:31:46 +0100
commite11705b616777a8a72363b2037d989987630e863 (patch)
treefda56011e9ac37da9e53762d8dc24c7a87cbee82 /src/alloc.c
parentc446797d60edf1058f6cbec28e57255d245dd47b (diff)
parentcded56c19b30e038537398b5213438c339428ed9 (diff)
downloademacs-e11705b616777a8a72363b2037d989987630e863.tar.gz
emacs-e11705b616777a8a72363b2037d989987630e863.zip
conflict resolve
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 80086433e65..b2703c5f961 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -422,11 +422,11 @@ buffer_memory_full (ptrdiff_t nbytes)
422 422
423#ifndef REL_ALLOC 423#ifndef REL_ALLOC
424 memory_full (nbytes); 424 memory_full (nbytes);
425#endif 425#else
426
427 /* This used to call error, but if we've run out of memory, we could 426 /* This used to call error, but if we've run out of memory, we could
428 get infinite recursion trying to build the string. */ 427 get infinite recursion trying to build the string. */
429 xsignal (Qnil, Vmemory_signal_data); 428 xsignal (Qnil, Vmemory_signal_data);
429#endif
430} 430}
431 431
432/* A common multiple of the positive integers A and B. Ideally this 432/* A common multiple of the positive integers A and B. Ideally this