From: Eli Zaretskii Date: Sat, 10 May 2008 07:58:50 +0000 (+0000) Subject: (syms_of_ntproc) : Doc fix. X-Git-Tag: emacs-pretest-22.2.90~137 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=688e8ff6d33a228b464d4331ab57cfd292aa823a;p=emacs.git (syms_of_ntproc) : Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index f5b038846e9..984c997b544 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2008-05-10 Eli Zaretskii + + * w32proc.c (syms_of_ntproc) : Doc fix. + + * w32.c (stat): Fix test of Vw32_get_true_file_attributes against + the value returned by GetDriveType. + 2008-05-04 YAMAMOTO Mitsuharu * image.c [USE_MAC_IMAGE_IO] (image_load_image_io): diff --git a/src/w32proc.c b/src/w32proc.c index 3756f4a8dd1..3f8e2b1c72f 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -2354,10 +2354,10 @@ 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 + doc: /* If non-nil, determine accurate link count and file type in `file-attributes'. +This option is mostly 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 for files on local fixed drives. 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;