diff options
| author | Richard M. Stallman | 2006-01-26 17:51:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-01-26 17:51:42 +0000 |
| commit | 2aee5ca377df1eb480be399f62f4168ec465942e (patch) | |
| tree | 52b87f57aab3b378a7111ce5a8f061d58ccabb72 /src/alloc.c | |
| parent | bb9c8a997ad8af86bb8a1361dc52864c3edd2c6f (diff) | |
| download | emacs-2aee5ca377df1eb480be399f62f4168ec465942e.tar.gz emacs-2aee5ca377df1eb480be399f62f4168ec465942e.zip | |
(check_pure_size): Make overflow message an "error message".
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index f0c77a26710..4d44134e1cd 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -4659,7 +4659,7 @@ void | |||
| 4659 | check_pure_size () | 4659 | check_pure_size () |
| 4660 | { | 4660 | { |
| 4661 | if (pure_bytes_used_before_overflow) | 4661 | if (pure_bytes_used_before_overflow) |
| 4662 | message ("Pure Lisp storage overflow (approx. %d bytes needed)", | 4662 | message ("emacs:0:Pure Lisp storage overflow (approx. %d bytes needed)", |
| 4663 | (int) (pure_bytes_used + pure_bytes_used_before_overflow)); | 4663 | (int) (pure_bytes_used + pure_bytes_used_before_overflow)); |
| 4664 | } | 4664 | } |
| 4665 | 4665 | ||