From: Michael Albinus Date: Fri, 21 Dec 2012 08:10:26 +0000 (+0100) Subject: * simple.el (process-file): Overwrite stderr file, if exists. X-Git-Tag: emacs-24.3.90~173^2~7^2~534 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0e9c7693712014196946a83709a83c08a7dfea25;p=emacs.git * simple.el (process-file): Overwrite stderr file, if exists. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a25836da996..2fd19c4a467 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-12-21 Michael Albinus + + * simple.el (process-file): Overwrite stderr file, if exists. + 2012-12-21 Daiki Ueno * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer. diff --git a/lisp/simple.el b/lisp/simple.el index c0ba5477b56..635d1b0cda3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2804,7 +2804,7 @@ value passed." (or lc infile) (if stderr-file (list (car buffer) stderr-file) buffer) display args) - (when stderr-file (copy-file stderr-file (cadr buffer))))) + (when stderr-file (copy-file stderr-file (cadr buffer) t)))) (when stderr-file (delete-file stderr-file)) (when lc (delete-file lc)))))