1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-10 15:56:18 +00:00

* simple.el (process-file): Overwrite stderr file, if exists.

This commit is contained in:
Michael Albinus 2012-12-21 09:10:26 +01:00
parent 34b4b7eb7e
commit 0e9c769371
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-12-21 Michael Albinus <michael.albinus@gmx.de>
* simple.el (process-file): Overwrite stderr file, if exists.
2012-12-21 Daiki Ueno <ueno@gnu.org>
* epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.

View File

@ -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)))))