Mercurial > emacs
changeset 10917:283f18021929
(Fcall_interactively): Fix Feb 22 change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 06 Mar 1995 04:17:49 +0000 |
parents | 3aea65d9eb68 |
children | a78b47b38c46 |
files | src/callint.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callint.c Mon Mar 06 04:15:23 1995 +0000 +++ b/src/callint.c Mon Mar 06 04:17:49 1995 +0000 @@ -610,7 +610,7 @@ /* 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]));