aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mackenzie2018-01-07 11:16:52 +0000
committerAlan Mackenzie2018-01-07 11:16:52 +0000
commitf04a527a9266690e6486c65d303a897b08fc5732 (patch)
tree156c47d60ec26eafddd878ce9bef8a3874c0b7ce /src
parent5f720046783c5b29fad3765303c1ad57aba167ce (diff)
downloademacs-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index aba34fd2611..47457e44c8e 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -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. */