From: Stefan Monnier Date: Wed, 9 Jul 2003 19:05:41 +0000 (+0000) Subject: (fix_overlays_before): Fix typo in last commit. X-Git-Tag: ttn-vms-21-2-B4~9398 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f93ad4cfac8deea4c6b05df4d82d685e07cd9f32;p=emacs.git (fix_overlays_before): Fix typo in last commit. --- diff --git a/src/buffer.c b/src/buffer.c index 3b0a3226b9d..b6bcfae6681 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -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;