aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2002-03-22 22:53:23 +0000
committerStefan Monnier2002-03-22 22:53:23 +0000
commita4d35afd2fdd1d24c7bfbb45b1411f5a8dbf2d63 (patch)
tree011f0fae5f516b62bcba4b25a863fb4f77173fad /src
parent0fdcb8675486d2560ad5b46b12f4fbfdda5a609f (diff)
downloademacs-a4d35afd2fdd1d24c7bfbb45b1411f5a8dbf2d63.tar.gz
emacs-a4d35afd2fdd1d24c7bfbb45b1411f5a8dbf2d63.zip
(check_pure_size): Only output a warning.
Diffstat (limited to 'src')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
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
3843check_pure_size () 3843check_pure_size ()
3844{ 3844{
3845 if (pure_bytes_used_before_overflow) 3845 if (pure_bytes_used_before_overflow)
3846 error ("Pure Lisp storage overflow (approx. %d bytes needed)", 3846 message ("Pure Lisp storage overflow (approx. %d bytes needed)",
3847 (int) (pure_bytes_used + pure_bytes_used_before_overflow)); 3847 (int) (pure_bytes_used + pure_bytes_used_before_overflow));
3848} 3848}
3849 3849
3850 3850