1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 13:10:57 -08:00

(re_match_2_internal): Declare buf_ch unsigned int.

This commit is contained in:
Richard M. Stallman 1998-04-07 03:21:46 +00:00
parent 69927a6cec
commit e71b197157

View file

@ -4500,7 +4500,7 @@ re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
do
{
int pat_charlen, buf_charlen;
int pat_ch, buf_ch;
unsigned int pat_ch, buf_ch;
PREFETCH ();
pat_ch = STRING_CHAR_AND_LENGTH (p, pend - p, pat_charlen);
@ -4543,7 +4543,7 @@ re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
case anychar:
{
int buf_charlen;
int buf_ch;
unsigned int buf_ch;
DEBUG_PRINT1 ("EXECUTING anychar.\n");