]> git.eshelyaron.com Git - emacs.git/commitdiff
(transpose_markers): Update marker's bytepos.
authorRichard M. Stallman <rms@gnu.org>
Fri, 2 Jan 1998 21:26:32 +0000 (21:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 2 Jan 1998 21:26:32 +0000 (21:26 +0000)
src/editfns.c

index e4bf6a9099cb7c35d96ef0cd96eeee5356d20423..14c908243a142bdfca6d96d9120724c5be0565d8 100644 (file)
@@ -2478,8 +2478,7 @@ transpose_markers (start1, end1, start2, end2,
            mpos += diff_byte;
          else
            mpos -= amt2_byte;
-         if (mpos > GPT_BYTE) mpos += GAP_SIZE;
-         XMARKER (marker)->bufpos = mpos;
+         XMARKER (marker)->bytepos = mpos;
        }
       mpos = XMARKER (marker)->charpos;
       if (mpos >= start1 && mpos < end2)