aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-09-08 02:01:59 +0000
committerKenichi Handa1998-09-08 02:01:59 +0000
commit9869520f333b701cd2382511c067adeed09ad7eb (patch)
tree3b3c4a9cea0094ed8e8ca68d26b19ec3707f8e2a /src
parent2e45bf18010af1c55dda850afb325284e367d1e9 (diff)
downloademacs-9869520f333b701cd2382511c067adeed09ad7eb.tar.gz
emacs-9869520f333b701cd2382511c067adeed09ad7eb.zip
(Fsubst_char_in_region): Call replace_range with the
arg MARKERS 1.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 0e4f7ce540e..8949b183947 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1978,7 +1978,7 @@ Both characters must have the same length of multi-byte form.")
1978 /* replace_range is less efficient, because it moves the gap, 1978 /* replace_range is less efficient, because it moves the gap,
1979 but it handles combining correctly. */ 1979 but it handles combining correctly. */
1980 replace_range (pos, pos + 1, string, 1980 replace_range (pos, pos + 1, string,
1981 0, 0, 0); 1981 0, 0, 1);
1982 if (! NILP (noundo)) 1982 if (! NILP (noundo))
1983 current_buffer->undo_list = tem; 1983 current_buffer->undo_list = tem;
1984 1984