# HG changeset patch # User Stefan Monnier # Date 1057777541 0 # Node ID fd71e1aaa83858f8681093e5c4e32a1ca94ef774 # Parent dc926bfd82482dcf5b2fa0ee0ea591ed9c76a112 (fix_overlays_before): Fix typo in last commit. diff -r dc926bfd8248 -r fd71e1aaa838 src/buffer.c --- 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;