]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_interactively): Fix Feb 22 change.
authorRichard M. Stallman <rms@gnu.org>
Mon, 6 Mar 1995 04:17:49 +0000 (04:17 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 6 Mar 1995 04:17:49 +0000 (04:17 +0000)
src/callint.c

index be3517efcd4265b8a75f9763f5db08a49695d74a..0bc1c9963666d2d6c07f4911023dd441af697882 100644 (file)
@@ -610,7 +610,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
 
   /* If we used a marker to hold point, mark, or an end of the region,
      temporarily, convert it to an integer now.  */
-  for (i = 0; i++; i < count)
+  for (i = 1; i <= count; i++)
     if (varies[i] >= 1 && varies[i] <= 4)
       XSETINT (args[i], marker_position (args[i]));