diff options
| author | Kenichi Handa | 1998-09-08 02:01:59 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-09-08 02:01:59 +0000 |
| commit | 9869520f333b701cd2382511c067adeed09ad7eb (patch) | |
| tree | 3b3c4a9cea0094ed8e8ca68d26b19ec3707f8e2a | |
| parent | 2e45bf18010af1c55dda850afb325284e367d1e9 (diff) | |
| download | emacs-9869520f333b701cd2382511c067adeed09ad7eb.tar.gz emacs-9869520f333b701cd2382511c067adeed09ad7eb.zip | |
(Fsubst_char_in_region): Call replace_range with the
arg MARKERS 1.
| -rw-r--r-- | src/editfns.c | 2 |
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 | ||