1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 11:33:09 -08:00

(Fforward_comment): Use type int for from' and from_byte'.

This commit is contained in:
John Paul Wallington 2006-07-09 03:19:16 +00:00
parent 3aa7c28e8e
commit 4f4c0966e2

View file

@ -1992,8 +1992,8 @@ between them, return t; otherwise return nil. */)
(count)
Lisp_Object count;
{
register EMACS_INT from;
EMACS_INT from_byte;
register int from;
int from_byte;
register EMACS_INT stop;
register int c, c1;
register enum syntaxcode code;