1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 15:52:00 -08:00

(check_pure_size): Make overflow message an "error message".

This commit is contained in:
Richard M. Stallman 2006-01-26 17:51:42 +00:00
parent bb9c8a997a
commit 2aee5ca377

View 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));
}