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:
parent
aef8a36fb0
commit
85bc1d4ea5
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue