emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108429: Improve call-process-regi


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108429: Improve call-process-region error message.
Date: Fri, 02 Nov 2012 02:33:19 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108429
fixes bug: http://debbugs.gnu.org/11586
author: Jim Meyering <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Wed 2012-05-30 22:20:45 +0800
message:
  Improve call-process-region error message.
  
  * src/callproc.c (Fcall_process_region): Include directory component
  in mkstemp error message.
modified:
  src/ChangeLog
  src/callproc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-05-30 07:59:44 +0000
+++ b/src/ChangeLog     2012-05-30 14:20:45 +0000
@@ -1,3 +1,8 @@
+2012-05-30  Jim Meyering  <address@hidden>
+
+       * callproc.c (Fcall_process_region): Include directory component
+       in mkstemp error message (Bug#11586).
+
 2012-05-30  Paul Eggert  <address@hidden>
 
        * alloc.c, lisp.h (make_pure_vector): Now static.

=== modified file 'src/callproc.c'
--- a/src/callproc.c    2012-05-27 01:06:44 +0000
+++ b/src/callproc.c    2012-05-30 14:20:45 +0000
@@ -1015,7 +1015,7 @@
       UNBLOCK_INPUT;
       if (fd == -1)
        report_file_error ("Failed to open temporary file",
-                          Fcons (Vtemp_file_name_pattern, Qnil));
+                          Fcons (build_string (tempfile), Qnil));
       else
        close (fd);
     }


reply via email to

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