diff options
| author | Karl Heuer | 1995-04-03 22:10:36 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-04-03 22:10:36 +0000 |
| commit | 6c4429a5022ada4141960825bdd34ee54938d19d (patch) | |
| tree | f2c6ff9639eeb04a353aa3ba713814f7bf31fd44 /src | |
| parent | 1979717a5a2483de65d7f48fa241b20f53181b17 (diff) | |
| download | emacs-6c4429a5022ada4141960825bdd34ee54938d19d.tar.gz emacs-6c4429a5022ada4141960825bdd34ee54938d19d.zip | |
(message_nolog): New function.
Diffstat (limited to 'src')
| -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) | |||
| 515 | } | 515 | } |
| 516 | } | 516 | } |
| 517 | 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; | ||
| 529 | } | ||
| 530 | |||
| 518 | void | 531 | void |
| 519 | update_echo_area () | 532 | update_echo_area () |
| 520 | { | 533 | { |