diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-04-03 22:10:36 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-04-03 22:10:36 +0000 |
commit | 8de24d025478efc803e6574398044ab2cd71334d (patch) | |
tree | 5db8c14deb806d5fb42e58b1dd20b43018129c87 | |
parent | 1cf0563d64c6fc2fbd48118f4711c01fd3d47bdb (diff) | |
download | emacs-8de24d025478efc803e6574398044ab2cd71334d.tar.gz |
(message_nolog): New function.
-rw-r--r-- | src/xdisp.c | 13 |
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) } } +/* 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 () { |