diff options
| author | Alan Mackenzie | 2018-01-07 11:16:52 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2018-01-07 11:16:52 +0000 |
| commit | f04a527a9266690e6486c65d303a897b08fc5732 (patch) | |
| tree | 156c47d60ec26eafddd878ce9bef8a3874c0b7ce /src | |
| parent | 5f720046783c5b29fad3765303c1ad57aba167ce (diff) | |
| download | emacs-f04a527a9266690e6486c65d303a897b08fc5732.tar.gz emacs-f04a527a9266690e6486c65d303a897b08fc5732.zip | |
* fns.c (base64-decode-region): Add signal_after_change call for insertion.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -3319,6 +3319,7 @@ If the region can't be decoded, signal an error and don't modify the buffer. */ | |||
| 3319 | and delete the old. (Insert first in order to preserve markers.) */ | 3319 | and delete the old. (Insert first in order to preserve markers.) */ |
| 3320 | TEMP_SET_PT_BOTH (XFASTINT (beg), ibeg); | 3320 | TEMP_SET_PT_BOTH (XFASTINT (beg), ibeg); |
| 3321 | insert_1_both (decoded, inserted_chars, decoded_length, 0, 1, 0); | 3321 | insert_1_both (decoded, inserted_chars, decoded_length, 0, 1, 0); |
| 3322 | signal_after_change (XFASTINT (beg), 0, inserted_chars); | ||
| 3322 | SAFE_FREE (); | 3323 | SAFE_FREE (); |
| 3323 | 3324 | ||
| 3324 | /* Delete the original text. */ | 3325 | /* Delete the original text. */ |