aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-07-09 19:05:41 +0000
committerStefan Monnier2003-07-09 19:05:41 +0000
commitf93ad4cfac8deea4c6b05df4d82d685e07cd9f32 (patch)
tree6223cb93ae44f160453fa462eab20e453829e335
parent80384936e24d66526fa5e2aa5546f24e81c66767 (diff)
downloademacs-f93ad4cfac8deea4c6b05df4d82d685e07cd9f32.tar.gz
emacs-f93ad4cfac8deea4c6b05df4d82d685e07cd9f32.zip
(fix_overlays_before): Fix typo in last commit.
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
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)
3431 or the found one ends before PREV, 3431 or the found one ends before PREV,
3432 or the found one is the last one in the list, 3432 or the found one is the last one in the list,
3433 we don't have to fix anything. */ 3433 we don't have to fix anything. */
3434 if (tail || end < prev || !tail->next) 3434 if (!tail || end < prev || !tail->next)
3435 return; 3435 return;
3436 3436
3437 right_pair = parent; 3437 right_pair = parent;