Mercurial > emacs
changeset 101177:e3098e61557d
(matching_regexp): Fix OB1 error.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 14 Jan 2009 13:41:12 +0000 |
parents | d3a820b16a3d |
children | f068978fa9ab |
files | lib-src/ebrowse.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/ebrowse.c Wed Jan 14 13:41:04 2009 +0000 +++ b/lib-src/ebrowse.c Wed Jan 14 13:41:12 2009 +0000 @@ -2033,7 +2033,7 @@ while (in - p < min_regexp && p > inbuffer) { /* Line probably not significant enough */ - for (--p; p >= inbuffer && *p != '\n'; --p) + for (--p; p > inbuffer && *p != '\n'; --p) ; } if (*p == '\n')