mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(matching_regexp): Fix OB1 error.
This commit is contained in:
parent
9eb67dd9d4
commit
efdd3da41d
1 changed files with 1 additions and 1 deletions
|
|
@ -2033,7 +2033,7 @@ matching_regexp ()
|
|||
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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue