aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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')