aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorStefan Monnier2008-02-06 03:16:10 +0000
committerStefan Monnier2008-02-06 03:16:10 +0000
commitca3199106fe185dd5d42e5086a7e5c4f7ea10659 (patch)
treeefb194ceb0a413d37973cfdebd24ab574c1d0d3c /doc/lispref
parentf9ffa1eabb499f073b72015041ac2ed1d10f34e7 (diff)
downloademacs-ca3199106fe185dd5d42e5086a7e5c4f7ea10659.tar.gz
emacs-ca3199106fe185dd5d42e5086a7e5c4f7ea10659.zip
* process.c (Fstart_process):
* callproc.c (Fcall_process): Handle the case where Funhandled_file_name_directory returns nil.
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/files.texi10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index a77f5387a28..640d4acdd15 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -2800,10 +2800,12 @@ making connections when they don't exist.
2800@end defun 2800@end defun
2801 2801
2802@defun unhandled-file-name-directory filename 2802@defun unhandled-file-name-directory filename
2803This function returns the name of a directory that is not magic. It 2803This function returns the name of a directory that is not magic.
2804uses the directory part of @var{filename} if that is not magic. For a 2804It uses the directory part of @var{filename} if that is not magic.
2805magic file name, it invokes the file name handler, which therefore 2805For a magic file name, it invokes the file name handler, which
2806decides what value to return. 2806therefore decides what value to return. If @var{filename} is not
2807accessible from a local process, then the file name handler should
2808indicate it by returning nil.
2807 2809
2808This is useful for running a subprocess; every subprocess must have a 2810This is useful for running a subprocess; every subprocess must have a
2809non-magic directory to serve as its current directory, and this function 2811non-magic directory to serve as its current directory, and this function