aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/files.texi15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 3ffc2967311..d529c22b760 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -1555,7 +1555,8 @@ This subroutine converts a symbolic specification of file mode bits in
1555@var{modes} into the equivalent numeric value. If the symbolic 1555@var{modes} into the equivalent numeric value. If the symbolic
1556specification is based on an existing file, that file's mode bits are 1556specification is based on an existing file, that file's mode bits are
1557taken from the optional argument @var{base-modes}; if that argument is 1557taken from the optional argument @var{base-modes}; if that argument is
1558omitted or nil, it defaults to zero, i.e.@: no access rights at all. 1558omitted or @code{nil}, it defaults to zero, i.e.@: no access rights at
1559all.
1559@end defun 1560@end defun
1560 1561
1561@defun set-file-times filename &optional time 1562@defun set-file-times filename &optional time
@@ -2801,12 +2802,12 @@ making connections when they don't exist.
2801@end defun 2802@end defun
2802 2803
2803@defun unhandled-file-name-directory filename 2804@defun unhandled-file-name-directory filename
2804This function returns the name of a directory that is not magic. 2805This function returns the name of a directory that is not magic. It
2805It uses the directory part of @var{filename} if that is not magic. 2806uses the directory part of @var{filename} if that is not magic. For a
2806For a magic file name, it invokes the file name handler, which 2807magic file name, it invokes the file name handler, which therefore
2807therefore decides what value to return. If @var{filename} is not 2808decides what value to return. If @var{filename} is not accessible
2808accessible from a local process, then the file name handler should 2809from a local process, then the file name handler should indicate it by
2809indicate it by returning nil. 2810returning @code{nil}.
2810 2811
2811This is useful for running a subprocess; every subprocess must have a 2812This is useful for running a subprocess; every subprocess must have a
2812non-magic directory to serve as its current directory, and this function 2813non-magic directory to serve as its current directory, and this function