diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/editfns.c b/src/editfns.c index 3dff49fb00c..12700527ef3 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2050,6 +2050,7 @@ nil. */) | |||
| 2050 | 2050 | ||
| 2051 | if (early_abort) | 2051 | if (early_abort) |
| 2052 | { | 2052 | { |
| 2053 | /* FIXME: Use 'replace_range'! */ | ||
| 2053 | del_range (min_a, ZV); | 2054 | del_range (min_a, ZV); |
| 2054 | Finsert_buffer_substring (source, Qnil,Qnil); | 2055 | Finsert_buffer_substring (source, Qnil,Qnil); |
| 2055 | SAFE_FREE_UNBIND_TO (count, Qnil); | 2056 | SAFE_FREE_UNBIND_TO (count, Qnil); |
| @@ -2099,6 +2100,7 @@ nil. */) | |||
| 2099 | eassert (beg_a <= end_a); | 2100 | eassert (beg_a <= end_a); |
| 2100 | eassert (beg_b <= end_b); | 2101 | eassert (beg_b <= end_b); |
| 2101 | eassert (beg_a < end_a || beg_b < end_b); | 2102 | eassert (beg_a < end_a || beg_b < end_b); |
| 2103 | /* FIXME: Use 'replace_range'! */ | ||
| 2102 | if (beg_a < end_a) | 2104 | if (beg_a < end_a) |
| 2103 | del_range (beg_a, end_a); | 2105 | del_range (beg_a, end_a); |
| 2104 | if (beg_b < end_b) | 2106 | if (beg_b < end_b) |