Mercurial > emacs
changeset 68398:cec05baae14f
(check_pure_size): Make overflow message an "error message".
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 26 Jan 2006 17:51:42 +0000 |
parents | 5b1791b98dc2 |
children | 38032f41ea5b |
files | src/alloc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Thu Jan 26 17:50:50 2006 +0000 +++ b/src/alloc.c Thu Jan 26 17:51:42 2006 +0000 @@ -4659,7 +4659,7 @@ 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)); }