diff src/xdisp.c @ 11193:b0a12ea680c1

(message_nolog): New function.
author Karl Heuer <kwzh@gnu.org>
date Mon, 03 Apr 1995 22:10:36 +0000
parents e3022a32d11d
children 0340dba1df7e
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 ()
 {