comparison src/syntax.c @ 71733:1326ca5680f2

(Fforward_comment): Use type int for `from' and `from_byte'.
author John Paul Wallington <jpw@pobox.com>
date Sun, 09 Jul 2006 03:19:16 +0000
parents de59660f0a51
children 60cfbf52270a
comparison
equal deleted inserted replaced
71732:c8ed266edc5e 71733:1326ca5680f2
1990 If COUNT comments are found as expected, with nothing except whitespace 1990 If COUNT comments are found as expected, with nothing except whitespace
1991 between them, return t; otherwise return nil. */) 1991 between them, return t; otherwise return nil. */)
1992 (count) 1992 (count)
1993 Lisp_Object count; 1993 Lisp_Object count;
1994 { 1994 {
1995 register EMACS_INT from; 1995 register int from;
1996 EMACS_INT from_byte; 1996 int from_byte;
1997 register EMACS_INT stop; 1997 register EMACS_INT stop;
1998 register int c, c1; 1998 register int c, c1;
1999 register enum syntaxcode code; 1999 register enum syntaxcode code;
2000 int comstyle = 0; /* style of comment encountered */ 2000 int comstyle = 0; /* style of comment encountered */
2001 int comnested = 0; /* whether the comment is nestable or not */ 2001 int comnested = 0; /* whether the comment is nestable or not */