]> git.eshelyaron.com Git - emacs.git/commitdiff
(check_pure_size): Make overflow message an "error message".
authorRichard M. Stallman <rms@gnu.org>
Thu, 26 Jan 2006 17:51:42 +0000 (17:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 26 Jan 2006 17:51:42 +0000 (17:51 +0000)
src/alloc.c

index f0c77a26710380b6356a316827338fa0d6dd5989..4d44134e1cdad505b343dcdb7606f64cbcb957e3 100644 (file)
@@ -4659,7 +4659,7 @@ void
 check_pure_size ()
 {
   if (pure_bytes_used_before_overflow)
-    message ("Pure Lisp storage overflow (approx. %d bytes needed)",
+    message ("emacs:0:Pure Lisp storage overflow (approx. %d bytes needed)",
             (int) (pure_bytes_used + pure_bytes_used_before_overflow));
 }