diff options
| -rw-r--r-- | doc/lispref/files.texi | 15 |
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 |
| 1556 | specification is based on an existing file, that file's mode bits are | 1556 | specification is based on an existing file, that file's mode bits are |
| 1557 | taken from the optional argument @var{base-modes}; if that argument is | 1557 | taken from the optional argument @var{base-modes}; if that argument is |
| 1558 | omitted or nil, it defaults to zero, i.e.@: no access rights at all. | 1558 | omitted or @code{nil}, it defaults to zero, i.e.@: no access rights at |
| 1559 | all. | ||
| 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 |
| 2804 | This function returns the name of a directory that is not magic. | 2805 | This function returns the name of a directory that is not magic. It |
| 2805 | It uses the directory part of @var{filename} if that is not magic. | 2806 | uses the directory part of @var{filename} if that is not magic. For a |
| 2806 | For a magic file name, it invokes the file name handler, which | 2807 | magic file name, it invokes the file name handler, which therefore |
| 2807 | therefore decides what value to return. If @var{filename} is not | 2808 | decides what value to return. If @var{filename} is not accessible |
| 2808 | accessible from a local process, then the file name handler should | 2809 | from a local process, then the file name handler should indicate it by |
| 2809 | indicate it by returning nil. | 2810 | returning @code{nil}. |
| 2810 | 2811 | ||
| 2811 | This is useful for running a subprocess; every subprocess must have a | 2812 | This is useful for running a subprocess; every subprocess must have a |
| 2812 | non-magic directory to serve as its current directory, and this function | 2813 | non-magic directory to serve as its current directory, and this function |