diff options
author | Dave Love <fx@gnu.org> | 2003-06-02 18:29:17 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2003-06-02 18:29:17 +0000 |
commit | b884eb4db2584372fce1d777fdf2cf8f7ff27e04 (patch) | |
tree | a24d2f126419f1ab94b7a667fd9a3a06e9f79e7e /src/regex.c | |
parent | f50e280d5100ee636b98fcd93399a0b1125c30c5 (diff) | |
download | emacs-b884eb4db2584372fce1d777fdf2cf8f7ff27e04.tar.gz |
(re_search_2): Fix last change.
Diffstat (limited to 'src/regex.c')
-rw-r--r-- | src/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) #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 |