aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-04-03 22:10:36 +0000
committerKarl Heuer1995-04-03 22:10:36 +0000
commit6c4429a5022ada4141960825bdd34ee54938d19d (patch)
treef2c6ff9639eeb04a353aa3ba713814f7bf31fd44 /src
parent1979717a5a2483de65d7f48fa241b20f53181b17 (diff)
downloademacs-6c4429a5022ada4141960825bdd34ee54938d19d.tar.gz
emacs-6c4429a5022ada4141960825bdd34ee54938d19d.zip
(message_nolog): New function.
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{