diff options
| author | Eli Zaretskii | 2015-08-26 18:44:09 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-08-26 18:44:09 +0300 |
| commit | 84a978724217516694620bbc4ab6fb02075c137c (patch) | |
| tree | 16ad38f381c71a55a2d78e25048ab4a395366ce4 /src | |
| parent | 2731e821ab157bf71724a4843a9ec67120e88db0 (diff) | |
| download | emacs-84a978724217516694620bbc4ab6fb02075c137c.tar.gz emacs-84a978724217516694620bbc4ab6fb02075c137c.zip | |
Mention false positives of file-accessible-directory on w32
* src/fileio.c (Ffile_accessible_directory_p): Doc fix.
(Bug#21346)
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 905778e9277..8dfc9fffacf 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2681,7 +2681,11 @@ and the directory must allow you to open files in it. In order to use a | |||
| 2681 | directory as a buffer's current directory, this predicate must return true. | 2681 | directory as a buffer's current directory, this predicate must return true. |
| 2682 | A directory name spec may be given instead; then the value is t | 2682 | A directory name spec may be given instead; then the value is t |
| 2683 | if the directory so specified exists and really is a readable and | 2683 | if the directory so specified exists and really is a readable and |
| 2684 | searchable directory. */) | 2684 | searchable directory. |
| 2685 | |||
| 2686 | The result might be a false positive on MS-Windows in some rare cases, | ||
| 2687 | i.e., this function could return t for a directory that is not | ||
| 2688 | accessible by the current user. */) | ||
| 2685 | (Lisp_Object filename) | 2689 | (Lisp_Object filename) |
| 2686 | { | 2690 | { |
| 2687 | Lisp_Object absname; | 2691 | Lisp_Object absname; |