aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index fd08f443c0f..02c71203b1d 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -515,6 +515,19 @@ message (m, a1, a2, a3)
515 } 515 }
516} 516}
517 517
518/* The non-logging version of that function. */
519void
520message_nolog (m, a1, a2, a3)
521 char *m;
522 EMACS_INT a1, a2, a3;
523{
524 Lisp_Object old_log_max;
525 old_log_max = Vmessage_log_max;
526 Vmessage_log_max = Qnil;
527 message (m, a1, a2, a3);
528 Vmessage_log_max = old_log_max;
529}
530
518void 531void
519update_echo_area () 532update_echo_area ()
520{ 533{