comparison 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
comparison
equal deleted inserted replaced
11192:503fa4ccb1fe 11193:b0a12ea680c1
511 /* Print should start at the beginning of the message 511 /* Print should start at the beginning of the message
512 buffer next time. */ 512 buffer next time. */
513 message_buf_print = 0; 513 message_buf_print = 0;
514 } 514 }
515 } 515 }
516 }
517
518 /* The non-logging version of that function. */
519 void
520 message_nolog (m, a1, a2, a3)
521 char *m;
522 EMACS_INT a1, a2, a3;
523 {
524 Lisp_Object old_log_max;
525 old_log_max = Vmessage_log_max;
526 Vmessage_log_max = Qnil;
527 message (m, a1, a2, a3);
528 Vmessage_log_max = old_log_max;
516 } 529 }
517 530
518 void 531 void
519 update_echo_area () 532 update_echo_area ()
520 { 533 {