aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex.c
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1998-04-07 04:07:58 +0000
committerKarl Heuer <[email protected]>1998-04-07 04:07:58 +0000
commit85bc1d4ea583f884fc60cdfd8cd3cdbedbb7db8e (patch)
tree752d4dbfaf0a76d92d40a4279ac8ac2e5ddac327 /src/regex.c
parentaef8a36fb09453f4be66be9d04a16cd6e8f1fe44 (diff)
(re_match_2) <anychar>: In unibyte case, set buf_ch as unsigned.
Diffstat (limited to 'src/regex.c')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index 2421f5a884..29928e9dfc 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -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;
}