summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2003-06-02 18:28:46 +0000
committerDave Love <fx@gnu.org>2003-06-02 18:28:46 +0000
commit4c63eca02df05261eeefbb44dfb32bf589d6929c (patch)
tree2355cb08b280b556ddbe81d2e2b3b61a5a8e81bd
parent3f8c2bca04aec7a727a742555560927a716bec5a (diff)
downloadgnulib-emacs-unicode.tar.gz
(re_search_2): Fix last change.emacs-unicode
-rw-r--r--regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regex.c b/regex.c
index bea8433153..bc88663897 100644
--- a/regex.c
+++ b/regex.c
@@ -4049,7 +4049,7 @@ re_search_2 (bufp, str1, size1, str2, size2, startpos, range, regs, stop)
#ifdef emacs
MAKE_CHAR_MULTIBYTE (buf_ch);
#endif
- buf_ch = RE_TRANSLATE (buf_ch);
+ buf_ch = RE_TRANSLATE (translate, buf_ch);
#ifdef emacs
MAKE_CHAR_UNIBYTE (buf_ch);
#endif