# HG changeset patch # User Jason Rumney # Date 1207824174 0 # Node ID f1f27e9c15d71a3b5df5dcd0c779f72c66108d3b # Parent 796bbedc63b1fac27cddf1aa9ae875c21c6edeba (syms_of_ntproc): Change Vw32_get_true_file attributes default to Qlocal. diff -r 796bbedc63b1 -r f1f27e9c15d7 src/w32proc.c --- a/src/w32proc.c Thu Apr 10 10:42:22 2008 +0000 +++ b/src/w32proc.c Thu Apr 10 10:42:54 2008 +0000 @@ -109,6 +109,7 @@ exactly, at the expense of slower operation. Since true hard links are supported on NTFS volumes, this is only relevant on NT. */ Lisp_Object Vw32_get_true_file_attributes; +extern Lisp_Object Qlocal; Lisp_Object Qhigh, Qlow; @@ -2354,9 +2355,12 @@ DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes, doc: /* Non-nil means determine accurate link count in `file-attributes'. -Note that this option is only useful for files on NTFS volumes, where hard links -are supported. Moreover, it slows down `file-attributes' noticeably. */); - Vw32_get_true_file_attributes = Qt; +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. */); + Vw32_get_true_file_attributes = Qlocal; staticpro (&Vw32_valid_locale_ids); staticpro (&Vw32_valid_codepages);