aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ebrowse.c
diff options
context:
space:
mode:
authorChong Yidong2009-01-14 13:41:12 +0000
committerChong Yidong2009-01-14 13:41:12 +0000
commitefdd3da41d3545f069499d5a76cda82b6f570251 (patch)
treeb5931c95c87bf58a2adb3e7525f877c3a389dd7c /lib-src/ebrowse.c
parent9eb67dd9d4cf658e0f77577af41208f7508bb5d4 (diff)
downloademacs-efdd3da41d3545f069499d5a76cda82b6f570251.tar.gz
emacs-efdd3da41d3545f069499d5a76cda82b6f570251.zip
(matching_regexp): Fix OB1 error.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r--lib-src/ebrowse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index 8f4f91634af..85def362dea 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -2033,7 +2033,7 @@ matching_regexp ()
2033 while (in - p < min_regexp && p > inbuffer) 2033 while (in - p < min_regexp && p > inbuffer)
2034 { 2034 {
2035 /* Line probably not significant enough */ 2035 /* Line probably not significant enough */
2036 for (--p; p >= inbuffer && *p != '\n'; --p) 2036 for (--p; p > inbuffer && *p != '\n'; --p)
2037 ; 2037 ;
2038 } 2038 }
2039 if (*p == '\n') 2039 if (*p == '\n')