1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-01 02:31:23 -07:00

* sheap.c (report_sheap_usage): Use message, not message1, so

that we don't try to create a buffer while we're in the middle
  of dumping Emacs.  Explain why.
This commit is contained in:
Daniel Colascione 2013-02-19 21:56:28 -08:00
commit 6181850468
2 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2013-02-19 Daniel Colascione <dancol@dancol.org>
* sheap.c (report_sheap_usage): Use message, not message1, so
that we don't try to create a buffer while we're in the middle
of dumping Emacs. Explain why.
2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
* search.c (find_newline): Return byte position in bytepos.
Adjust comment.
(find_next_newline_no_quit, find_before_next_newline): Add

View file

@ -91,5 +91,8 @@ 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);
message1 (buf);
/* Don't change this call to message1! message1 can log
messages, and at this point, we're not allowed to create
buffers. */
message ("%s", buf);
}