emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f04a527: * fns.c (base64-decode-region): Add signal


From: Alan Mackenzie
Subject: [Emacs-diffs] master f04a527: * fns.c (base64-decode-region): Add signal_after_change call for insertion.
Date: Sun, 7 Jan 2018 06:22:46 -0500 (EST)

branch: master
commit f04a527a9266690e6486c65d303a897b08fc5732
Author: Alan Mackenzie <address@hidden>
Commit: Alan Mackenzie <address@hidden>

    * 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 aba34fd..47457e4 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.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]