From: Stefan Monnier Date: Fri, 22 Mar 2002 22:53:23 +0000 (+0000) Subject: (check_pure_size): Only output a warning. X-Git-Tag: ttn-vms-21-2-B4~16019 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4d35afd2fdd1d24c7bfbb45b1411f5a8dbf2d63;p=emacs.git (check_pure_size): Only output a warning. --- diff --git a/src/alloc.c b/src/alloc.c index 4a276a4cc12..a6aacd704be 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -3843,8 +3843,8 @@ 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)); }