From f4c8ded2b0d890f78bcd0ecd697aeaa785c2c470 Mon Sep 17 00:00:00 2001 From: Richard M. Stallman Date: Mon, 6 Mar 1995 04:17:49 +0000 Subject: (Fcall_interactively): Fix Feb 22 change. --- src/callint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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.") /* 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])); -- cgit v1.2.1