aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/xdisp.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index d4f25661e08..367408dbdba 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1,5 +1,5 @@
1/* Display generation from window structure and buffer text. 1/* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000, 2001
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -6363,6 +6363,17 @@ push_message ()
6363} 6363}
6364 6364
6365 6365
6366/* Handler for record_unwind_protect calling pop_message. */
6367
6368Lisp_Object
6369push_message_unwind (dummy)
6370 Lisp_Object dummy;
6371{
6372 pop_message ();
6373 return Qnil;
6374}
6375
6376
6366/* Restore message display from the top of Vmessage_stack. */ 6377/* Restore message display from the top of Vmessage_stack. */
6367 6378
6368void 6379void