aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2008-05-10 07:58:50 +0000
committerEli Zaretskii2008-05-10 07:58:50 +0000
commit688e8ff6d33a228b464d4331ab57cfd292aa823a (patch)
tree7c01ebf9d99dac913f05e6de3aa22d76f2f99ca1 /src
parentfbc4a2f453b86bf2281e00650ac08372149c9458 (diff)
downloademacs-688e8ff6d33a228b464d4331ab57cfd292aa823a.tar.gz
emacs-688e8ff6d33a228b464d4331ab57cfd292aa823a.zip
(syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/w32proc.c6
2 files changed, 10 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f5b038846e9..984c997b544 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12008-05-10 Eli Zaretskii <eliz@gnu.org>
2
3 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
4
5 * w32.c (stat): Fix test of Vw32_get_true_file_attributes against
6 the value returned by GetDriveType.
7
12008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 82008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 9
3 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io): 10 * 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. */);
2354#endif 2354#endif
2355 2355
2356 DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes, 2356 DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes,
2357 doc: /* Non-nil means determine accurate link count in `file-attributes'. 2357 doc: /* If non-nil, determine accurate link count and file type in `file-attributes'.
2358This option is only useful for files on NTFS volumes, where 2358This option is mostly useful for files on NTFS volumes, where
2359hard links are supported. The default value `local' means only do 2359hard links are supported. The default value `local' means only do
2360this for files on local harddrives. Any other non-nil value means do 2360this for files on local fixed drives. Any other non-nil value means do
2361this even on remote and removable drives where the performance impact 2361this even on remote and removable drives where the performance impact
2362may be noticeable even on modern hardware. */); 2362may be noticeable even on modern hardware. */);
2363 Vw32_get_true_file_attributes = Qlocal; 2363 Vw32_get_true_file_attributes = Qlocal;