]> code.delx.au - gnu-emacs/blobdiff - src/alloc.c
(abbrev-start-location): Doc fix.
[gnu-emacs] / src / alloc.c
index 4a276a4cc12b736fc213275a7440e6877691a392..067dd7b753e8ee594ecee59b6f657ebbb603213b 100644 (file)
@@ -3837,14 +3837,14 @@ pure_alloc (size, type)
 }
 
 
-/* Signal an error if PURESIZE is too small.  */
+/* Print a warning if PURESIZE is too small.  */
 
 void
 check_pure_size ()
 {
   if (pure_bytes_used_before_overflow)
-    error ("Pure Lisp storage overflow (approx. %d bytes needed)",
-          (int) (pure_bytes_used + pure_bytes_used_before_overflow));
+    message ("Pure Lisp storage overflow (approx. %d bytes needed)",
+            (int) (pure_bytes_used + pure_bytes_used_before_overflow));
 }