aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/callproc.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e550604498d..6ad7c939bce 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12006-01-01 Ken Raeburn <raeburn@gnu.org>
2
3 * callproc.c (Fcall_process_region): Bind file-name-handler-alist
4 to nil for the call to Fwrite_region.
5
12005-12-31 Richard M. Stallman <rms@gnu.org> 62005-12-31 Richard M. Stallman <rms@gnu.org>
2 7
3 * minibuf.c (read_minibuf): Clear out all other minibuffer windows. 8 * minibuf.c (read_minibuf): Clear out all other minibuffer windows.
diff --git a/src/callproc.c b/src/callproc.c
index 47930819c07..a9b9d2bff6a 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -1126,6 +1126,9 @@ usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &r
1126 int count1 = SPECPDL_INDEX (); 1126 int count1 = SPECPDL_INDEX ();
1127 1127
1128 specbind (intern ("coding-system-for-write"), val); 1128 specbind (intern ("coding-system-for-write"), val);
1129 /* POSIX lets mk[s]temp use "."; don't invoke jka-compr if we
1130 happen to get a ".Z" suffix. */
1131 specbind (intern ("file-name-handler-alist"), Qnil);
1129 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil); 1132 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
1130 1133
1131 unbind_to (count1, Qnil); 1134 unbind_to (count1, Qnil);