diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/processes.texi | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 2a79cc781f8..2acb7c99e02 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -300,8 +300,11 @@ system, much like text written into a file. @xref{Coding Systems}. | |||
| 300 | @defun call-process program &optional infile destination display &rest args | 300 | @defun call-process program &optional infile destination display &rest args |
| 301 | This function calls @var{program} and waits for it to finish. | 301 | This function calls @var{program} and waits for it to finish. |
| 302 | 302 | ||
| 303 | The current working directory of the subprocess is | 303 | The current working directory of the subprocess is set to the current |
| 304 | @code{default-directory}. | 304 | buffer's value of @code{default-directory} if that is local (as |
| 305 | determined by @code{unhandled-file-name-directory}), or "~" otherwise. | ||
| 306 | If you want to run a process in a remote directory use | ||
| 307 | @code{process-file}. | ||
| 305 | 308 | ||
| 306 | The standard input for the new process comes from file @var{infile} if | 309 | The standard input for the new process comes from file @var{infile} if |
| 307 | @var{infile} is not @code{nil}, and from the null device otherwise. | 310 | @var{infile} is not @code{nil}, and from the null device otherwise. |
| @@ -677,6 +680,12 @@ created with @code{make-pipe-process}, described below. | |||
| 677 | 680 | ||
| 678 | The original argument list, modified with the actual connection | 681 | The original argument list, modified with the actual connection |
| 679 | information, is available via the @code{process-contact} function. | 682 | information, is available via the @code{process-contact} function. |
| 683 | |||
| 684 | The current working directory of the subprocess is set to the current | ||
| 685 | buffer's value of @code{default-directory} if that is local (as | ||
| 686 | determined by `unhandled-file-name-directory'), or "~" otherwise. If | ||
| 687 | you want to run a process in a remote direcotry use | ||
| 688 | @code{start-file-process}. | ||
| 680 | @end defun | 689 | @end defun |
| 681 | 690 | ||
| 682 | @defun make-pipe-process &rest args | 691 | @defun make-pipe-process &rest args |