diff options
| author | Dave Love | 2003-06-02 18:29:17 +0000 |
|---|---|---|
| committer | Dave Love | 2003-06-02 18:29:17 +0000 |
| commit | b884eb4db2584372fce1d777fdf2cf8f7ff27e04 (patch) | |
| tree | a24d2f126419f1ab94b7a667fd9a3a06e9f79e7e /src | |
| parent | f50e280d5100ee636b98fcd93399a0b1125c30c5 (diff) | |
| download | emacs-b884eb4db2584372fce1d777fdf2cf8f7ff27e04.tar.gz emacs-b884eb4db2584372fce1d777fdf2cf8f7ff27e04.zip | |
(re_search_2): Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/regex.c | 2 |
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 @@ | |||
| 1 | 2003-06-02 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * regex.c (re_search_2): Fix last change. | ||
| 4 | |||
| 1 | 2003-05-30 Kenichi Handa <handa@etlken2> | 5 | 2003-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 |