Mercurial > emacs
diff src/intervals.c @ 3736:dea4ce3d7a4d
(adjust_intervals_for_insertion): By default, copy
properties from before the insertion.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 15 Jun 1993 07:48:27 +0000 |
| parents | 5ada670e1fd8 |
| children | a58e981e2582 |
line wrap: on
line diff
--- a/src/intervals.c Tue Jun 15 06:26:00 1993 +0000 +++ b/src/intervals.c Tue Jun 15 07:48:27 1993 +0000 @@ -655,7 +655,7 @@ /* 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; }
