diff options
| author | Joakim Verona | 2012-12-21 09:16:13 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-12-21 09:16:13 +0100 |
| commit | a1826c0db8917c8bd7b66b98f44136e86c5ddbde (patch) | |
| tree | 02a5c9f50eef86eae8a6946f9ba81ee81d857d63 | |
| parent | 1513f7ca823eb0a8ad5e0752b5cce69c90eaef6d (diff) | |
| parent | 0e9c7693712014196946a83709a83c08a7dfea25 (diff) | |
| download | emacs-a1826c0db8917c8bd7b66b98f44136e86c5ddbde.tar.gz emacs-a1826c0db8917c8bd7b66b98f44136e86c5ddbde.zip | |
auto upstream
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a25836da996..2fd19c4a467 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-12-21 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * simple.el (process-file): Overwrite stderr file, if exists. | ||
| 4 | |||
| 1 | 2012-12-21 Daiki Ueno <ueno@gnu.org> | 5 | 2012-12-21 Daiki Ueno <ueno@gnu.org> |
| 2 | 6 | ||
| 3 | * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer. | 7 | * 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." | |||
| 2804 | (or lc infile) | 2804 | (or lc infile) |
| 2805 | (if stderr-file (list (car buffer) stderr-file) buffer) | 2805 | (if stderr-file (list (car buffer) stderr-file) buffer) |
| 2806 | display args) | 2806 | display args) |
| 2807 | (when stderr-file (copy-file stderr-file (cadr buffer))))) | 2807 | (when stderr-file (copy-file stderr-file (cadr buffer) t)))) |
| 2808 | (when stderr-file (delete-file stderr-file)) | 2808 | (when stderr-file (delete-file stderr-file)) |
| 2809 | (when lc (delete-file lc))))) | 2809 | (when lc (delete-file lc))))) |
| 2810 | 2810 | ||