diff options
author | Miles Bader <miles@gnu.org> | 2008-04-23 05:55:42 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2008-04-23 05:55:42 +0000 |
commit | a113b3ca322fd73d97d0d9d69c9f48dc13fb326a (patch) | |
tree | 37b3ad22a198a83f68738ef86aec187bb6d926d9 /src/w32proc.c | |
parent | e96a8d6dc0ffc35cf6c02924de2453c69fa8f6fe (diff) | |
parent | 81fe843b5a3cc7708e0800aeb5bc0dbe448e800a (diff) | |
download | emacs-a113b3ca322fd73d97d0d9d69c9f48dc13fb326a.tar.gz |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1121
Diffstat (limited to 'src/w32proc.c')
-rw-r--r-- | src/w32proc.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/w32proc.c b/src/w32proc.c index fbb4030e319..0665fa28f16 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -110,6 +110,7 @@ Lisp_Object Vw32_generate_fake_inodes; 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; @@ -2353,9 +2354,12 @@ the truename of a file can be slow. */); 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); |