]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 10 May 2008 08:25:55 +0000 (08:25 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 10 May 2008 08:25:55 +0000 (08:25 +0000)
src/ChangeLog
src/w32proc.c

index 6b7d01a0c79aacfb546b69dc42d7626ddcd020d8..a8c2686ae99634af85864a29da0888366e04d769 100644 (file)
@@ -1,3 +1,7 @@
+2008-05-10  Eli Zaretskii  <eliz@gnu.org>
+
+       * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
+
 2008-05-09  Glenn Morris  <rgm@gnu.org>
 
        * fileio.c (Fread_file_name): Remove reference to insdef, deleted
index 0665fa28f16c1729a83e25c25bc8c1dcedc69876..77753134f0cb18c9aa178cbf1352e576984a5755 100644 (file)
@@ -2353,12 +2353,18 @@ the truename of a file can be slow.  */);
 #endif
 
   DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes,
-              doc: /* Non-nil means determine accurate link count in `file-attributes'.
-This option is only useful for files on NTFS volumes, where
-hard links are supported.  The default value `local' means only do
-this for files on local harddrives.  Any other non-nil value means do
-this even on remote and removable drives where the performance impact
-may be noticeable even on modern hardware.  */);
+              doc: /* Non-nil means determine accurate file attributes in `file-attributes'.
+This option controls whether to issue additional system calls to determine
+accurate link counts, file type, and ownership information.  It is only
+useful for files on NTFS volumes, where hard links and file security are
+supported.
+
+Without these system calls, link count will always be reported as 1 and file
+ownership will be attributed to the current user.
+The default value `local' means only issue these system calls for files
+on local fixed drives.  A value of nil means never issue them.
+Any other non-nil value means do this even on remote and removable drives
+where the performance impact may be noticeable even on modern hardware.  */);
   Vw32_get_true_file_attributes = Qlocal;
 
   staticpro (&Vw32_valid_locale_ids);