Mercurial > emacs
changeset 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 | dc926bfd8248 |
children | f8d1f1c48e3e |
files | src/buffer.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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;