# HG changeset patch # User Karl Heuer # Date 796947036 0 # Node ID b0a12ea680c1ff8a82c8302c0d4ed5478c8919a3 # Parent 503fa4ccb1fe58550ee12ba53806416d74872f0b (message_nolog): New function. diff -r 503fa4ccb1fe -r b0a12ea680c1 src/xdisp.c --- a/src/xdisp.c Mon Apr 03 22:08:29 1995 +0000 +++ b/src/xdisp.c Mon Apr 03 22:10:36 1995 +0000 @@ -515,6 +515,19 @@ } } +/* The non-logging version of that function. */ +void +message_nolog (m, a1, a2, a3) + char *m; + EMACS_INT a1, a2, a3; +{ + Lisp_Object old_log_max; + old_log_max = Vmessage_log_max; + Vmessage_log_max = Qnil; + message (m, a1, a2, a3); + Vmessage_log_max = old_log_max; +} + void update_echo_area () {