aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 329fa6ba670..cd6d188b686 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,18 @@
12013-07-15 Paul Eggert <eggert@cs.ucla.edu>
2
3 * callproc.c (Fcall_process_region): Fix minor race and tune.
4 (create_temp_file): New function, with the temp-file-creation part
5 of the old Fcall_process_region. Use Fcopy_sequence to create the
6 temp file name, rather than alloca + build_string, for simplicity.
7 Don't bother to block input around the temp file creation;
8 shouldn't be needed. Simplify use of mktemp. Use
9 record_unwind_protect immediately after creating the temp file;
10 this closes an unlikely race where the temp file was not removed.
11 Use memcpy rather than an open-coded loop.
12 (Fcall_process_region): Use the new function. If the input is
13 empty, redirect from /dev/null rather than from a newly created
14 empty temp file; this avoids unnecessary file system traffic.
15
12013-07-14 Paul Eggert <eggert@cs.ucla.edu> 162013-07-14 Paul Eggert <eggert@cs.ucla.edu>
2 17
3 * filelock.c (create_lock_file) [!HAVE_MKOSTEMP && !HAVE_MKSTEMP]: 18 * filelock.c (create_lock_file) [!HAVE_MKOSTEMP && !HAVE_MKSTEMP]: