diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c index 9af4773a01b..d72fe4636db 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1992,16 +1992,16 @@ between them, return t; otherwise return nil. */) | |||
| 1992 | (count) | 1992 | (count) |
| 1993 | Lisp_Object count; | 1993 | Lisp_Object count; |
| 1994 | { | 1994 | { |
| 1995 | register int from; | 1995 | register EMACS_INT from; |
| 1996 | int from_byte; | 1996 | EMACS_INT from_byte; |
| 1997 | register 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 */ |
| 2002 | int found; | 2002 | int found; |
| 2003 | int count1; | 2003 | EMACS_INT count1; |
| 2004 | int out_charpos, out_bytepos; | 2004 | EMACS_INT out_charpos, out_bytepos; |
| 2005 | int dummy; | 2005 | int dummy; |
| 2006 | 2006 | ||
| 2007 | CHECK_NUMBER (count); | 2007 | CHECK_NUMBER (count); |