diff options
| author | Lars Magne Ingebrigtsen | 2011-05-01 02:04:17 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-05-01 02:04:17 +0200 |
| commit | 1ef14cb4b0f726a5e6a86e20fed8cfecb22c67d5 (patch) | |
| tree | 3278d1d473acef1cbac1551f80e9fd815a08fb99 /doc | |
| parent | dcb79f208ab9e2e1e8e0d4e9810ca25c1a660eaf (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 3 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-04-23 Juanma Barranquero <lekktu@gmail.com> | 6 | 2011-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. | |||
| 299 | MS-DOS doesn't support asynchronous subprocesses, so this option doesn't | 299 | MS-DOS doesn't support asynchronous subprocesses, so this option doesn't |
| 300 | work there. | 300 | work there. |
| 301 | 301 | ||
| 302 | @item @code{(:file @var{file-name})} | ||
| 303 | Send 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})} |
| 303 | Keep the standard output stream separate from the standard error stream; | 306 | Keep the standard output stream separate from the standard error stream; |
| 304 | deal with the ordinary output as specified by @var{real-destination}, | 307 | deal with the ordinary output as specified by @var{real-destination}, |