mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-28 00:01:33 -08:00
(push_message_unwind): New function.
This commit is contained in:
parent
99ee70a989
commit
098ec84ae2
1 changed files with 12 additions and 1 deletions
13
src/xdisp.c
13
src/xdisp.c
|
|
@ -1,5 +1,5 @@
|
|||
/* Display generation from window structure and buffer text.
|
||||
Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000
|
||||
Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000, 2001
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Emacs.
|
||||
|
|
@ -6363,6 +6363,17 @@ push_message ()
|
|||
}
|
||||
|
||||
|
||||
/* Handler for record_unwind_protect calling pop_message. */
|
||||
|
||||
Lisp_Object
|
||||
push_message_unwind (dummy)
|
||||
Lisp_Object dummy;
|
||||
{
|
||||
pop_message ();
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
|
||||
/* Restore message display from the top of Vmessage_stack. */
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue