mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-05-01 10:41:57 -07:00
(message_nolog): New function.
This commit is contained in:
parent
1979717a5a
commit
6c4429a502
1 changed files with 13 additions and 0 deletions
13
src/xdisp.c
13
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 ()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue