From bf88ca63905ad2afc61fae92e8fba048819d4521 Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Sun, 9 Jul 2006 03:33:14 +0000 Subject: [PATCH] (Fforward_comment): Use type int for `stop', `count1', `out_charpos' and `out_bytepos' too; revert Stef's previous change. --- src/ChangeLog | 4 ++++ src/syntax.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 2192ee1faf7..37feab00c68 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-07-09 John Paul Wallington + + * syntax.c (Fforward_comment): Revert previous change. + 2006-07-09 Kim F. Storm * window.c (Fforce_window_update): Doc fix. diff --git a/src/syntax.c b/src/syntax.c index e95557d83aa..9af4773a01b 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1994,14 +1994,14 @@ between them, return t; otherwise return nil. */) { register int from; int from_byte; - register EMACS_INT stop; + register int stop; register int c, c1; register enum syntaxcode code; int comstyle = 0; /* style of comment encountered */ int comnested = 0; /* whether the comment is nestable or not */ int found; - EMACS_INT count1; - EMACS_INT out_charpos, out_bytepos; + int count1; + int out_charpos, out_bytepos; int dummy; CHECK_NUMBER (count); -- 2.11.4.GIT