(Ftranspose_regions): Pass 0 as NOMARKERS to replace_range.
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 11:05:37 +0000 (11:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 11:05:37 +0000 (11:05 +0000)
src/editfns.c

index fcf79d1..51b62c4 100644 (file)
@@ -2940,8 +2940,8 @@ Transposing beyond buffer boundaries is an error.")
                         start1_byte, start1_byte + len1_byte,
                         start2_byte, start2_byte + len2_byte);
 
-      replace_range (start2, end2, text1, 1, 0, 1);
-      replace_range (start1, end1, text2, 1, 0, 1);
+      replace_range (start2, end2, text1, 1, 0, 0);
+      replace_range (start1, end1, text2, 1, 0, 0);
 
       UNGCPRO;
       return Qnil;