From eebaeadde2e9cd812dd5b3eebf3860164338feb0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 15 Jun 1993 07:48:27 +0000 Subject: [PATCH] (adjust_intervals_for_insertion): By default, copy properties from before the insertion. --- src/intervals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intervals.c b/src/intervals.c index e6254cbdf6a..a737e9dceef 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -655,7 +655,7 @@ adjust_intervals_for_insertion (tree, position, length) /* If both intervals are sticky here, then default to the left-most one. But perhaps we should create a new interval here instead... */ - if (END_STICKY_P (prev)) + if (END_STICKY_P (prev) || ! FRONT_STICKY_P (i)) i = prev; }