diff 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
line wrap: on
line diff
--- a/src/xdisp.c	Wed Sep 11 01:58:54 2002 +0000
+++ b/src/xdisp.c	Wed Sep 11 01:59:33 2002 +0000
@@ -6842,17 +6842,6 @@
 }
 
 
-/* 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
@@ -6869,6 +6858,16 @@
 }
 
 
+/* 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