mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 18:37:33 +00:00
(fix_overlays_before): Fix typo in last commit.
This commit is contained in:
parent
80384936e2
commit
f93ad4cfac
1 changed files with 1 additions and 1 deletions
|
|
@ -3431,7 +3431,7 @@ fix_overlays_before (bp, prev, pos)
|
|||
or the found one ends before PREV,
|
||||
or the found one is the last one in the list,
|
||||
we don't have to fix anything. */
|
||||
if (tail || end < prev || !tail->next)
|
||||
if (!tail || end < prev || !tail->next)
|
||||
return;
|
||||
|
||||
right_pair = parent;
|
||||
|
|
|
|||
Loading…
Reference in a new issue