]> git.eshelyaron.com Git - emacs.git/commitdiff
(message_nolog): New function.
authorKarl Heuer <kwzh@gnu.org>
Mon, 3 Apr 1995 22:10:36 +0000 (22:10 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 3 Apr 1995 22:10:36 +0000 (22:10 +0000)
src/xdisp.c

index fd08f443c0fead1f7db12d51accf069427ee5854..02c71203b1d77c95ab658aca3c4847fda873889f 100644 (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 ()
 {