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:
parent
69927a6cec
commit
e71b197157
1 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue