aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorMiles Bader2008-04-23 05:55:42 +0000
committerMiles Bader2008-04-23 05:55:42 +0000
commita113b3ca322fd73d97d0d9d69c9f48dc13fb326a (patch)
tree37b3ad22a198a83f68738ef86aec187bb6d926d9 /src/w32proc.c
parente96a8d6dc0ffc35cf6c02924de2453c69fa8f6fe (diff)
parent81fe843b5a3cc7708e0800aeb5bc0dbe448e800a (diff)
downloademacs-a113b3ca322fd73d97d0d9d69c9f48dc13fb326a.tar.gz
emacs-a113b3ca322fd73d97d0d9d69c9f48dc13fb326a.zip
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.c10
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;
110 exactly, at the expense of slower operation. Since true hard links 110 exactly, at the expense of slower operation. Since true hard links
111 are supported on NTFS volumes, this is only relevant on NT. */ 111 are supported on NTFS volumes, this is only relevant on NT. */
112Lisp_Object Vw32_get_true_file_attributes; 112Lisp_Object Vw32_get_true_file_attributes;
113extern Lisp_Object Qlocal;
113 114
114Lisp_Object Qhigh, Qlow; 115Lisp_Object Qhigh, Qlow;
115 116
@@ -2353,9 +2354,12 @@ the truename of a file can be slow. */);
2353 2354
2354 DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes, 2355 DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes,
2355 doc: /* Non-nil means determine accurate link count in `file-attributes'. 2356 doc: /* Non-nil means determine accurate link count in `file-attributes'.
2356Note that this option is only useful for files on NTFS volumes, where hard links 2357This option is only useful for files on NTFS volumes, where
2357are supported. Moreover, it slows down `file-attributes' noticeably. */); 2358hard links are supported. The default value `local' means only do
2358 Vw32_get_true_file_attributes = Qt; 2359this for files on local harddrives. Any other non-nil value means do
2360this even on remote and removable drives where the performance impact
2361may be noticeable even on modern hardware. */);
2362 Vw32_get_true_file_attributes = Qlocal;
2359 2363
2360 staticpro (&Vw32_valid_locale_ids); 2364 staticpro (&Vw32_valid_locale_ids);
2361 staticpro (&Vw32_valid_codepages); 2365 staticpro (&Vw32_valid_codepages);