1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-01 10:41:57 -07:00

(message_nolog): New function.

This commit is contained in:
Karl Heuer 1995-04-03 22:10:36 +00:00
parent 1979717a5a
commit 6c4429a502

View file

@ -515,6 +515,19 @@ message (m, a1, a2, a3)
}
}
/* 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 ()
{