Mercurial > emacs
diff src/buffer.c @ 51853:fd71e1aaa838
(fix_overlays_before): Fix typo in last commit.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Wed, 09 Jul 2003 19:05:41 +0000 |
| parents | c5036e7cc93b |
| children | 6713947da36f |
line wrap: on
line diff
--- a/src/buffer.c Wed Jul 09 16:21:02 2003 +0000 +++ b/src/buffer.c Wed Jul 09 19:05:41 2003 +0000 @@ -3431,7 +3431,7 @@ 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;
