diff options
| author | Stefan Monnier | 2008-02-06 03:16:10 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-02-06 03:16:10 +0000 |
| commit | ca3199106fe185dd5d42e5086a7e5c4f7ea10659 (patch) | |
| tree | efb194ceb0a413d37973cfdebd24ab574c1d0d3c /doc/lispref | |
| parent | f9ffa1eabb499f073b72015041ac2ed1d10f34e7 (diff) | |
| download | emacs-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.texi | 10 |
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 |
| 2803 | This function returns the name of a directory that is not magic. It | 2803 | This function returns the name of a directory that is not magic. |
| 2804 | uses the directory part of @var{filename} if that is not magic. For a | 2804 | It uses the directory part of @var{filename} if that is not magic. |
| 2805 | magic file name, it invokes the file name handler, which therefore | 2805 | For a magic file name, it invokes the file name handler, which |
| 2806 | decides what value to return. | 2806 | therefore decides what value to return. If @var{filename} is not |
| 2807 | accessible from a local process, then the file name handler should | ||
| 2808 | indicate it by returning nil. | ||
| 2807 | 2809 | ||
| 2808 | This is useful for running a subprocess; every subprocess must have a | 2810 | This is useful for running a subprocess; every subprocess must have a |
| 2809 | non-magic directory to serve as its current directory, and this function | 2811 | non-magic directory to serve as its current directory, and this function |