diff src/callint.c @ 6494:00475922df29

(check_mark, Fcall_interactively): Use assignment, not initialization.
author Karl Heuer <kwzh@gnu.org>
date Wed, 23 Mar 1994 22:26:28 +0000
parents 264f353c5b00
children cd81dba38a49
line wrap: on
line diff
--- a/src/callint.c	Wed Mar 23 22:25:50 1994 +0000
+++ b/src/callint.c	Wed Mar 23 22:26:28 1994 +0000
@@ -142,7 +142,8 @@
 static void
 check_mark ()
 {
-  Lisp_Object tem = Fmarker_buffer (current_buffer->mark);
+  Lisp_Object tem;
+  tem = Fmarker_buffer (current_buffer->mark);
   if (NILP (tem) || (XBUFFER (tem) != current_buffer))
     error ("The mark is not set now");
   if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
@@ -321,9 +322,9 @@
 	}
       else if (*string == '@')
 	{
-	  Lisp_Object event =
-	    XVECTOR (this_command_keys)->contents[next_event];
+	  Lisp_Object event;
 
+	  event = XVECTOR (this_command_keys)->contents[next_event];
 	  if (EVENT_HAS_PARAMETERS (event)
 	      && XTYPE (event = XCONS (event)->cdr) == Lisp_Cons
 	      && XTYPE (event = XCONS (event)->car) == Lisp_Cons