From 3fc4037235381288defecf6166450a99d65cd69a Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 9 Apr 2011 19:27:15 -0700 Subject: [PATCH] * xdisp.c (message_nolog): Bring this back, inside "#if 0". See . --- src/xdisp.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/xdisp.c b/src/xdisp.c index f37254419eb..6fd3945511b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -8444,6 +8444,24 @@ message (const char *m, ...) } +#if 0 +/* The non-logging version of message. */ + +void +message_nolog (const char *m, ...) +{ + Lisp_Object old_log_max; + va_list ap; + va_start (ap, m); + old_log_max = Vmessage_log_max; + Vmessage_log_max = Qnil; + vmessage (m, ap); + Vmessage_log_max = old_log_max; + va_end (ap); +} +#endif + + /* Display the current message in the current mini-buffer. This is only called from error handlers in process.c, and is not time critical. */ -- 2.39.2