diff options
| author | Richard M. Stallman | 1995-03-06 04:17:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-03-06 04:17:49 +0000 |
| commit | f4c8ded2b0d890f78bcd0ecd697aeaa785c2c470 (patch) | |
| tree | 695d7c1b835310c8371388fd2b13f9b238b45043 /src/callint.c | |
| parent | 7c2087eea51155e0d39ccbe4a4e62a1ae78bedc2 (diff) | |
| download | emacs-f4c8ded2b0d890f78bcd0ecd697aeaa785c2c470.tar.gz emacs-f4c8ded2b0d890f78bcd0ecd697aeaa785c2c470.zip | |
(Fcall_interactively): Fix Feb 22 change.
Diffstat (limited to 'src/callint.c')
| -rw-r--r-- | src/callint.c | 2 |
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 | ||