extern void check_message_stack P_ ((void));
extern void setup_echo_area_for_printing P_ ((int));
extern int push_message P_ ((void));
-extern Lisp_Object push_message_unwind P_ ((Lisp_Object));
+extern Lisp_Object pop_message_unwind P_ ((Lisp_Object));
+extern Lisp_Object restore_message_unwind P_ ((Lisp_Object));
extern void pop_message P_ ((void));
extern void restore_message P_ ((void));
extern Lisp_Object current_message P_ ((void));
}
-/* 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
}
+/* Handler for record_unwind_protect calling pop_message. */
+
+Lisp_Object
+pop_message_unwind (dummy)
+ Lisp_Object dummy;
+{
+ pop_message ();
+ return Qnil;
+}
+
/* Pop the top-most entry off Vmessage_stack. */
void