From: Paul Eggert Date: Sun, 10 Apr 2011 02:27:15 +0000 (-0700) Subject: * xdisp.c (message_nolog): Bring this back, inside "#if 0". X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~356^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fc4037235381288defecf6166450a99d65cd69a;p=emacs.git * xdisp.c (message_nolog): Bring this back, inside "#if 0". See . --- 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. */