Mercurial > emacs
changeset 11193:b0a12ea680c1
(message_nolog): New function.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 03 Apr 1995 22:10:36 +0000 |
parents | 503fa4ccb1fe |
children | ca5effbebf81 |
files | src/xdisp.c |
diffstat | 1 files changed, 13 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 () {