diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-10-22 02:53:32 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-10-22 02:53:32 +0000 |
commit | 9ab5c9ca49f75e924b3d6924e4929e645fb0257b (patch) | |
tree | 5ea9275e7f7598ba11915981ee5b04194e4dd70e /src/insdel.c | |
parent | ff8e5528bd02f883ac39dc1f3b47b6f5a0269308 (diff) | |
download | emacs-9ab5c9ca49f75e924b3d6924e4929e645fb0257b.tar.gz |
(insert_before_markers): Don't inherit; insert_before_markers_and_inherit does
that.
Diffstat (limited to 'src/insdel.c')
-rw-r--r-- | src/insdel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insdel.c b/src/insdel.c index 0a76dfa537f..2c17f4aa6f8 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -468,7 +468,7 @@ insert_before_markers (string, length) if (length > 0) { register int opoint = PT; - insert_1 (string, length, 1); + insert_1 (string, length, 0); adjust_markers (opoint - 1, opoint, length); signal_after_change (PT-length, 0, length); } |