src/ChangeLog addition:
2005-01-28 Vin Shelton <acs(a)xemacs.org>
* sheap.c (more_static_core): Applied Ben's version of the long
string patch.
21.4 source patch:
Diff command: cvs -q diff -u
Files affected: src/sheap.c
Index: src/sheap.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/sheap.c,v
retrieving revision 1.12.2.1
diff -a -u -u -r1.12.2.1 sheap.c
--- src/sheap.c 2005/01/25 01:15:30 1.12.2.1
+++ src/sheap.c 2005/01/29 01:08:49
@@ -81,16 +81,16 @@
if (static_heap_ptr + size >= static_heap_base + static_heap_size)
{
printf(
-"\nRequested %d bytes, static heap exhausted! base is %p, current ptr\n\
-is %p. You have exhausted the static heap.\n\
-\n\
-If you are simply trying to compile, remove sheap-adjust.h\n\
-and recompile from the top level. If this doesn't\n\
-work then STATIC_HEAP_SLOP (defined in this file) is too small.\n\
-\n\
-If you want to run temacs, change SHEAP_ADJUSTMENT in sheap-adjust.h\n\
-to 0 or a +ve number. Generally you should *not* try to run temacs\n\
-with a static heap, you should dump first.\n", size,
+"\nRequested %d bytes, static heap exhausted! base is %p, current ptr\n"
+"is %p. You have exhausted the static heap. \n"
+"\n"
+"If you are simply trying to compile, remove sheap-adjust.h\n"
+"and recompile from the top level. If this doesn't\n"
+"work then STATIC_HEAP_SLOP (defined in this file) is too small.\n"
+"\n"
+"If you want to run temacs, change SHEAP_ADJUSTMENT in sheap-adjust.h\n"
+"to 0 or a +ve number. Generally you should *not* try to run temacs\n"
+"with a static heap, you should dump first.\n", size,
static_heap_base, static_heap_ptr);
exit(-1);
Show replies by date