aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-06 04:17:49 +0000
committerRichard M. Stallman1995-03-06 04:17:49 +0000
commitf4c8ded2b0d890f78bcd0ecd697aeaa785c2c470 (patch)
tree695d7c1b835310c8371388fd2b13f9b238b45043
parent7c2087eea51155e0d39ccbe4a4e62a1ae78bedc2 (diff)
downloademacs-f4c8ded2b0d890f78bcd0ecd697aeaa785c2c470.tar.gz
emacs-f4c8ded2b0d890f78bcd0ecd697aeaa785c2c470.zip
(Fcall_interactively): Fix Feb 22 change.
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index be3517efcd4..0bc1c996366 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -610,7 +610,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
610 610
611 /* If we used a marker to hold point, mark, or an end of the region, 611 /* If we used a marker to hold point, mark, or an end of the region,
612 temporarily, convert it to an integer now. */ 612 temporarily, convert it to an integer now. */
613 for (i = 0; i++; i < count) 613 for (i = 1; i <= count; i++)
614 if (varies[i] >= 1 && varies[i] <= 4) 614 if (varies[i] >= 1 && varies[i] <= 4)
615 XSETINT (args[i], marker_position (args[i])); 615 XSETINT (args[i], marker_position (args[i]));
616 616