diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-02-20 16:02:37 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-02-20 16:02:37 -0500 |
commit | e11dacb57703fb8044332d8a3933b815547911ec (patch) | |
tree | 8251ed1f39f821f044f318e9c4b9d6675a67c882 /src/sheap.c | |
parent | b6c2bfff02239197fc855c0575def855afab01c7 (diff) | |
download | emacs-e11dacb57703fb8044332d8a3933b815547911ec.tar.gz |
* src/sheap.c (report_sheap_usage): Prefer message1_nolog.
Diffstat (limited to 'src/sheap.c')
-rw-r--r-- | src/sheap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sheap.c b/src/sheap.c index 9e6b7fb1cf1..28597ec9b65 100644 --- a/src/sheap.c +++ b/src/sheap.c @@ -91,8 +91,7 @@ report_sheap_usage (int die_if_pure_storage_exceeded) char buf[200]; sprintf (buf, "Static heap usage: %d of %d bytes", bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); - /* Don't change this call to message1! message1 can log - messages, and at this point, we're not allowed to create + /* Don't log messages, cause at this point, we're not allowed to create buffers. */ - message ("%s", buf); + message1_nolog ("%s", buf); } |