From f04a527a9266690e6486c65d303a897b08fc5732 Mon Sep 17 00:00:00 2001 From: Alan Mackenzie Date: Sun, 7 Jan 2018 11:16:52 +0000 Subject: [PATCH] * fns.c (base64-decode-region): Add signal_after_change call for insertion. --- src/fns.c | 1 + 1 file changed, 1 insertion(+) 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. */ 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. */ -- 2.39.2