aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/callproc.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 556025fa5bd..e47f6a63740 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12013-11-05 Eli Zaretskii <eliz@gnu.org>
2
3 * callproc.c (call_process): Call prepare_to_modify_buffer before
4 decoding text read from the sub-process, as the decoded stuff will
5 be inserted into the buffer. This will invalidate the various
6 caches maintained for the buffer. (Bug#15148)
7
12013-11-05 Xue Fuqiao <xfq.free@gmail.com> 82013-11-05 Xue Fuqiao <xfq.free@gmail.com>
2 9
3 * xdisp.c (syms_of_xdisp): Mention the active display table in doc 10 * xdisp.c (syms_of_xdisp): Mention the active display table in doc
diff --git a/src/callproc.c b/src/callproc.c
index 2740779f513..72b9c1dc370 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -822,6 +822,7 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd,
822 ptrdiff_t count1 = SPECPDL_INDEX (); 822 ptrdiff_t count1 = SPECPDL_INDEX ();
823 823
824 XSETBUFFER (curbuf, current_buffer); 824 XSETBUFFER (curbuf, current_buffer);
825 prepare_to_modify_buffer (PT, PT, NULL);
825 /* We cannot allow after-change-functions be run 826 /* We cannot allow after-change-functions be run
826 during decoding, because that might modify the 827 during decoding, because that might modify the
827 buffer, while we rely on process_coding.produced to 828 buffer, while we rely on process_coding.produced to