aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-05-01 02:04:17 +0200
committerLars Magne Ingebrigtsen2011-05-01 02:04:17 +0200
commit1ef14cb4b0f726a5e6a86e20fed8cfecb22c67d5 (patch)
tree3278d1d473acef1cbac1551f80e9fd815a08fb99 /doc
parentdcb79f208ab9e2e1e8e0d4e9810ca25c1a660eaf (diff)
downloademacs-1ef14cb4b0f726a5e6a86e20fed8cfecb22c67d5.tar.gz
emacs-1ef14cb4b0f726a5e6a86e20fed8cfecb22c67d5.zip
Extend `call-process' to take the `(:file "file")' syntax to redirect
STDOUT to a file.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/processes.texi3
2 files changed, 8 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 0c0583c06ab..4aa63c6abaa 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12011-04-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * processes.texi (Synchronous Processes): Document the (:file
4 "/file-name") syntax for `call-process'.
5
12011-04-23 Juanma Barranquero <lekktu@gmail.com> 62011-04-23 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * windows.texi (Choosing Window): Fix typo. 8 * windows.texi (Choosing Window): Fix typo.
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index dc9fed58076..ba9d8accd4a 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -299,6 +299,9 @@ function returns.
299MS-DOS doesn't support asynchronous subprocesses, so this option doesn't 299MS-DOS doesn't support asynchronous subprocesses, so this option doesn't
300work there. 300work there.
301 301
302@item @code{(:file @var{file-name})}
303Send the output to the file name specified.
304
302@item @code{(@var{real-destination} @var{error-destination})} 305@item @code{(@var{real-destination} @var{error-destination})}
303Keep the standard output stream separate from the standard error stream; 306Keep the standard output stream separate from the standard error stream;
304deal with the ordinary output as specified by @var{real-destination}, 307deal with the ordinary output as specified by @var{real-destination},