diff options
| author | Jim Blandy | 1993-03-09 17:03:08 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-09 17:03:08 +0000 |
| commit | 11a364d9f2aa70ad32927bae8a32db9f25ce958d (patch) | |
| tree | 0e7c6c29a011a5d825e8d00b11b9e2a1c8e3ac7b | |
| parent | d41d75fbe972c7b5385c58f057715384950c9525 (diff) | |
| download | emacs-11a364d9f2aa70ad32927bae8a32db9f25ce958d.tar.gz emacs-11a364d9f2aa70ad32927bae8a32db9f25ce958d.zip | |
*** empty log message ***
| -rw-r--r-- | src/regex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c index eda11b5350a..cb94d597c6f 100644 --- a/src/regex.c +++ b/src/regex.c | |||
| @@ -2930,7 +2930,8 @@ re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop) | |||
| 2930 | inside the loop. */ | 2930 | inside the loop. */ |
| 2931 | if (translate) | 2931 | if (translate) |
| 2932 | while (range > lim | 2932 | while (range > lim |
| 2933 | && !fastmap[(unsigned char) translate[*d++]]) | 2933 | && !fastmap[(unsigned char) |
| 2934 | translate[(unsigned char) *d++]]) | ||
| 2934 | range--; | 2935 | range--; |
| 2935 | else | 2936 | else |
| 2936 | while (range > lim && !fastmap[(unsigned char) *d++]) | 2937 | while (range > lim && !fastmap[(unsigned char) *d++]) |