From: Richard M. Stallman Date: Tue, 18 Aug 1998 11:05:37 +0000 (+0000) Subject: (Ftranspose_regions): Pass 0 as NOMARKERS to replace_range. X-Git-Tag: emacs-20.3~16 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c2b705904d5cdf7640021fd98d4184d24d200787;p=emacs.git (Ftranspose_regions): Pass 0 as NOMARKERS to replace_range. --- diff --git a/src/editfns.c b/src/editfns.c index fcf79d13431..51b62c4bafa 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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;