aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2015-10-29 19:48:18 +0200
committerEli Zaretskii2015-10-29 19:48:18 +0200
commit8e8a06803c36fdbd4b90faf8f907a90cc33e1bd0 (patch)
treed45ed9ff0fc026871374c7da7bb1be2710797f07
parent8485d41e1948c8966a19343533988f6d26656037 (diff)
downloademacs-8e8a06803c36fdbd4b90faf8f907a90cc33e1bd0.tar.gz
emacs-8e8a06803c36fdbd4b90faf8f907a90cc33e1bd0.zip
; Improve documentation of 'unhandled-file-name-directory'
* doc/lispref/files.texi (Magic File Names): Better wording for the last change in the documentation of 'unhandled-file-name-directory'.
-rw-r--r--doc/lispref/files.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 60834338423..9a1b2cd217f 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -3081,12 +3081,12 @@ making connections when they don't exist.
3081@end defun 3081@end defun
3082 3082
3083@defun unhandled-file-name-directory filename 3083@defun unhandled-file-name-directory filename
3084This function returns the name of a directory that is not magic. It 3084This function returns the name of a directory that is not magic. For
3085turns @var{filename} into a directory name if that is not magic. For a 3085a non-magic @var{filename} it returns the corresponding directory name
3086magic file name, it invokes the file name handler, which therefore 3086(@pxref{Directory Names}). For a magic @var{filename}, it invokes the
3087decides what value to return. If @var{filename} is not accessible 3087file name handler, which therefore decides what value to return. If
3088from a local process, then the file name handler should indicate it by 3088@var{filename} is not accessible from a local process, then the file
3089returning @code{nil}. 3089name handler should indicate that by returning @code{nil}.
3090 3090
3091This is useful for running a subprocess; every subprocess must have a 3091This is useful for running a subprocess; every subprocess must have a
3092non-magic directory to serve as its current directory, and this function 3092non-magic directory to serve as its current directory, and this function