diff options
| author | Eli Zaretskii | 2008-05-10 08:54:03 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-05-10 08:54:03 +0000 |
| commit | 6af511e3228b185df40e303ce0463d2e4d30293a (patch) | |
| tree | 582a0f5a91eac4fc93b895439080bcafab48d286 /doc | |
| parent | 6c5665e9c472bcca38284bef6142a60e19d96447 (diff) | |
| download | emacs-6af511e3228b185df40e303ce0463d2e4d30293a.tar.gz emacs-6af511e3228b185df40e303ce0463d2e4d30293a.zip | |
(Windows Files): Update documentation of w32-get-true-file-attributes.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 7 | ||||
| -rw-r--r-- | doc/emacs/msdog.texi | 22 |
2 files changed, 23 insertions, 6 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 9a4a4dece59..e66e7f2c5bc 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-05-10 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * msdog.texi (Windows Files): Update documentation of | ||
| 4 | w32-get-true-file-attributes. | ||
| 5 | |||
| 1 | 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> | 6 | 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> |
| 2 | 7 | ||
| 3 | * files.texi, vc-xtra.texi, vc1-xtra.texi: Document the new VC | 8 | * files.texi, vc-xtra.texi, vc1-xtra.texi: Document the new VC |
| @@ -6,7 +11,7 @@ | |||
| 6 | 2008-05-08 Chong Yidong <cyd@stupidchicken.com> | 11 | 2008-05-08 Chong Yidong <cyd@stupidchicken.com> |
| 7 | 12 | ||
| 8 | * killing.texi (Appending Kills): Remove a strangely off-topic index | 13 | * killing.texi (Appending Kills): Remove a strangely off-topic index |
| 9 | entry. | 14 | entry "television". |
| 10 | 15 | ||
| 11 | 2008-05-07 Eric S. Raymond <esr@snark.thyrsus.com> | 16 | 2008-05-07 Eric S. Raymond <esr@snark.thyrsus.com> |
| 12 | 17 | ||
diff --git a/doc/emacs/msdog.texi b/doc/emacs/msdog.texi index 7fe3c9ca07d..80f31689c63 100644 --- a/doc/emacs/msdog.texi +++ b/doc/emacs/msdog.texi | |||
| @@ -172,11 +172,23 @@ backslash, and also knows about drive letters in file names. | |||
| 172 | default ignores letter-case in file names during completion. | 172 | default ignores letter-case in file names during completion. |
| 173 | 173 | ||
| 174 | @vindex w32-get-true-file-attributes | 174 | @vindex w32-get-true-file-attributes |
| 175 | If the variable @code{w32-get-true-file-attributes} is | 175 | The variable @code{w32-get-true-file-attributes} controls whether |
| 176 | non-@code{nil} (the default), Emacs tries to determine the accurate | 176 | Emacs should issue additional system calls to determine more |
| 177 | link counts for files. This option is only useful on NTFS volumes, | 177 | accurately file attributes in primitives like @code{file-attributes} |
| 178 | and it considerably slows down Dired and other features, so disable it | 178 | and @code{directory-files-and-attributes}. These additional calls are |
| 179 | on slow machines. | 179 | needed to report correct file ownership, link counts and file types |
| 180 | for special files such as pipes. Without these system calls, file | ||
| 181 | ownership will be attributed to the current user, link counts will be | ||
| 182 | always reported as 1, and special files will be reported as regular | ||
| 183 | files. | ||
| 184 | |||
| 185 | If the value of this variable is @code{local} (the default), Emacs | ||
| 186 | will issue these additional system calls only for files on local fixed | ||
| 187 | drives. Any other non-@code{nil} value means do this even for | ||
| 188 | removable and remote volumes, where this could potentially slow down | ||
| 189 | Dired and other related features. The value of @code{nil} means never | ||
| 190 | issue those system calls. Non-@code{nil} values are only useful on | ||
| 191 | NTFS volumes, which support hard links and file security. | ||
| 180 | 192 | ||
| 181 | @node ls in Lisp | 193 | @node ls in Lisp |
| 182 | @section Emulation of @code{ls} on MS-Windows | 194 | @section Emulation of @code{ls} on MS-Windows |