aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/callproc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fabbcbef40d..c21c21deb9a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12012-05-30 Jim Meyering <meyering@redhat.com>
2
3 * callproc.c (Fcall_process_region): Include directory component
4 in mkstemp error message (Bug#11586).
5
12012-05-30 Paul Eggert <eggert@cs.ucla.edu> 62012-05-30 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * alloc.c, lisp.h (make_pure_vector): Now static. 8 * alloc.c, lisp.h (make_pure_vector): Now static.
diff --git a/src/callproc.c b/src/callproc.c
index f7c9971907d..976d3061c8b 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -1015,7 +1015,7 @@ usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &r
1015 UNBLOCK_INPUT; 1015 UNBLOCK_INPUT;
1016 if (fd == -1) 1016 if (fd == -1)
1017 report_file_error ("Failed to open temporary file", 1017 report_file_error ("Failed to open temporary file",
1018 Fcons (Vtemp_file_name_pattern, Qnil)); 1018 Fcons (build_string (tempfile), Qnil));
1019 else 1019 else
1020 close (fd); 1020 close (fd);
1021 } 1021 }