aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2015-08-26 18:44:09 +0300
committerEli Zaretskii2015-08-26 18:44:09 +0300
commit84a978724217516694620bbc4ab6fb02075c137c (patch)
tree16ad38f381c71a55a2d78e25048ab4a395366ce4 /src
parent2731e821ab157bf71724a4843a9ec67120e88db0 (diff)
downloademacs-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.c6
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
2681directory as a buffer's current directory, this predicate must return true. 2681directory as a buffer's current directory, this predicate must return true.
2682A directory name spec may be given instead; then the value is t 2682A directory name spec may be given instead; then the value is t
2683if the directory so specified exists and really is a readable and 2683if the directory so specified exists and really is a readable and
2684searchable directory. */) 2684searchable directory.
2685
2686The result might be a false positive on MS-Windows in some rare cases,
2687i.e., this function could return t for a directory that is not
2688accessible by the current user. */)
2685 (Lisp_Object filename) 2689 (Lisp_Object filename)
2686{ 2690{
2687 Lisp_Object absname; 2691 Lisp_Object absname;