1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 16:21:07 -08:00

(re_match_2) <anychar>: In unibyte case, set buf_ch as unsigned.

This commit is contained in:
Karl Heuer 1998-04-07 04:07:58 +00:00
parent aef8a36fb0
commit 85bc1d4ea5

View file

@ -4555,7 +4555,7 @@ re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
else
#endif /* not emacs */
{
buf_ch = *d;
buf_ch = (unsigned char) *d;
buf_charlen = 1;
}