1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(adjust_intervals_for_insertion): By default, copy

properties from before the insertion.
This commit is contained in:
Richard M. Stallman 1993-06-15 07:48:27 +00:00
parent c07aec9773
commit eebaeadde2

View file

@ -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;
}