comparison src/xdisp.c @ 47393:38bf43c3fb05

(pop_message_unwind): Renamed from push_message_unwind.
author Richard M. Stallman <rms@gnu.org>
date Wed, 11 Sep 2002 01:59:33 +0000
parents fc2b2a9d0188
children eb0020984860
comparison
equal deleted inserted replaced
47392:734e6dc4caf1 47393:38bf43c3fb05
6840 Vmessage_stack = Fcons (msg, Vmessage_stack); 6840 Vmessage_stack = Fcons (msg, Vmessage_stack);
6841 return STRINGP (msg); 6841 return STRINGP (msg);
6842 } 6842 }
6843 6843
6844 6844
6845 /* Handler for record_unwind_protect calling pop_message. */
6846
6847 Lisp_Object
6848 push_message_unwind (dummy)
6849 Lisp_Object dummy;
6850 {
6851 pop_message ();
6852 return Qnil;
6853 }
6854
6855
6856 /* Restore message display from the top of Vmessage_stack. */ 6845 /* Restore message display from the top of Vmessage_stack. */
6857 6846
6858 void 6847 void
6859 restore_message () 6848 restore_message ()
6860 { 6849 {
6866 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg)); 6855 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
6867 else 6856 else
6868 message3_nolog (msg, 0, 0); 6857 message3_nolog (msg, 0, 0);
6869 } 6858 }
6870 6859
6860
6861 /* Handler for record_unwind_protect calling pop_message. */
6862
6863 Lisp_Object
6864 pop_message_unwind (dummy)
6865 Lisp_Object dummy;
6866 {
6867 pop_message ();
6868 return Qnil;
6869 }
6871 6870
6872 /* Pop the top-most entry off Vmessage_stack. */ 6871 /* Pop the top-most entry off Vmessage_stack. */
6873 6872
6874 void 6873 void
6875 pop_message () 6874 pop_message ()