aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-03-09 17:03:08 +0000
committerJim Blandy1993-03-09 17:03:08 +0000
commit11a364d9f2aa70ad32927bae8a32db9f25ce958d (patch)
tree0e7c6c29a011a5d825e8d00b11b9e2a1c8e3ac7b /src
parentd41d75fbe972c7b5385c58f057715384950c9525 (diff)
downloademacs-11a364d9f2aa70ad32927bae8a32db9f25ce958d.tar.gz
emacs-11a364d9f2aa70ad32927bae8a32db9f25ce958d.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/regex.c3
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++])