aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/files.texi2
-rw-r--r--doc/lispref/processes.texi10
2 files changed, 10 insertions, 2 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 5b428b6205d..d929978b6ea 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -3171,6 +3171,7 @@ first, before handlers for jobs such as remote file access.
3171@code{make-directory}, 3171@code{make-directory},
3172@code{make-directory-internal}, 3172@code{make-directory-internal},
3173@code{make-nearby-temp-file}, 3173@code{make-nearby-temp-file},
3174@code{make-process},
3174@code{make-symbolic-link},@* 3175@code{make-symbolic-link},@*
3175@code{process-file}, 3176@code{process-file},
3176@code{rename-file}, @code{set-file-acl}, @code{set-file-modes}, 3177@code{rename-file}, @code{set-file-acl}, @code{set-file-modes},
@@ -3227,6 +3228,7 @@ first, before handlers for jobs such as remote file access.
3227@code{make-auto-save-file-name}, 3228@code{make-auto-save-file-name},
3228@code{make-direc@discretionary{}{}{}tory}, 3229@code{make-direc@discretionary{}{}{}tory},
3229@code{make-direc@discretionary{}{}{}tory-internal}, 3230@code{make-direc@discretionary{}{}{}tory-internal},
3231@code{make-process},
3230@code{make-symbolic-link}, 3232@code{make-symbolic-link},
3231@code{process-file}, 3233@code{process-file},
3232@code{rename-file}, @code{set-file-acl}, @code{set-file-modes}, 3234@code{rename-file}, @code{set-file-acl}, @code{set-file-modes},
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index 402691c6bcf..d72f5b880a2 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -696,6 +696,12 @@ non-@code{nil} value should be either a buffer or a pipe process
696created with @code{make-pipe-process}, described below. If 696created with @code{make-pipe-process}, described below. If
697@var{stderr} is @code{nil}, standard error is mixed with standard 697@var{stderr} is @code{nil}, standard error is mixed with standard
698output, and both are sent to @var{buffer} or @var{filter}. 698output, and both are sent to @var{buffer} or @var{filter}.
699
700@item :file-handler @var{file-handler}
701If @var{file-handler} is non-@code{nil}, then look for a file name
702handler for the current buffer's @code{default-directory}, and invoke
703that file handler to make the process. If there is no such handler,
704proceed as if @var{file-handler} were @code{nil}.
699@end table 705@end table
700 706
701The original argument list, modified with the actual connection 707The original argument list, modified with the actual connection
@@ -704,8 +710,8 @@ information, is available via the @code{process-contact} function.
704The current working directory of the subprocess is set to the current 710The current working directory of the subprocess is set to the current
705buffer's value of @code{default-directory} if that is local (as 711buffer's value of @code{default-directory} if that is local (as
706determined by `unhandled-file-name-directory'), or "~" otherwise. If 712determined by `unhandled-file-name-directory'), or "~" otherwise. If
707you want to run a process in a remote directory use 713you want to run a process in a remote directory, pass
708@code{start-file-process}. 714@code{:file-handler t} to @code{make-process}.
709@end defun 715@end defun
710 716
711@defun make-pipe-process &rest args 717@defun make-pipe-process &rest args