aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/regex.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 32d5a690d05..3cd24eff246 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12003-06-02 Dave Love <fx@gnu.org>
2
3 * regex.c (re_search_2): Fix last change.
4
12003-05-30 Kenichi Handa <handa@etlken2> 52003-05-30 Kenichi Handa <handa@etlken2>
2 6
3 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not 7 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
diff --git a/src/regex.c b/src/regex.c
index bea8433153d..bc88663897c 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -4049,7 +4049,7 @@ re_search_2 (bufp, str1, size1, str2, size2, startpos, range, regs, stop)
4049#ifdef emacs 4049#ifdef emacs
4050 MAKE_CHAR_MULTIBYTE (buf_ch); 4050 MAKE_CHAR_MULTIBYTE (buf_ch);
4051#endif 4051#endif
4052 buf_ch = RE_TRANSLATE (buf_ch); 4052 buf_ch = RE_TRANSLATE (translate, buf_ch);
4053#ifdef emacs 4053#ifdef emacs
4054 MAKE_CHAR_UNIBYTE (buf_ch); 4054 MAKE_CHAR_UNIBYTE (buf_ch);
4055#endif 4055#endif