]> git.eshelyaron.com Git - emacs.git/commitdiff
* fns.c (base64-decode-region): Add signal_after_change call for insertion.
authorAlan Mackenzie <acm@muc.de>
Sun, 7 Jan 2018 11:16:52 +0000 (11:16 +0000)
committerAlan Mackenzie <acm@muc.de>
Sun, 7 Jan 2018 11:16:52 +0000 (11:16 +0000)
src/fns.c

index aba34fd261141a23e35520532037c0393abccc71..47457e44c8ecd65ba60a7ed0b59b58d3f9366f4f 100644 (file)
--- 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.  */
      and delete the old.  (Insert first in order to preserve markers.)  */
   TEMP_SET_PT_BOTH (XFASTINT (beg), ibeg);
   insert_1_both (decoded, inserted_chars, decoded_length, 0, 1, 0);
+  signal_after_change (XFASTINT (beg), 0, inserted_chars);
   SAFE_FREE ();
 
   /* Delete the original text.  */