Mercurial > hg > xemacs-beta
comparison src/device-msw.c @ 347:7c94d56991e1 r21-1-3
Import from CVS: tag r21-1-3
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:53:48 +0200 |
parents | afd57c14dfc8 |
children | 7347b34c275b |
comparison
equal
deleted
inserted
replaced
346:dd0986ffd2cf | 347:7c94d56991e1 |
---|---|
298 void | 298 void |
299 syms_of_device_mswindows (void) | 299 syms_of_device_mswindows (void) |
300 { | 300 { |
301 defsymbol (&Qinit_pre_mswindows_win, "init-pre-mswindows-win"); | 301 defsymbol (&Qinit_pre_mswindows_win, "init-pre-mswindows-win"); |
302 defsymbol (&Qinit_post_mswindows_win, "init-post-mswindows-win"); | 302 defsymbol (&Qinit_post_mswindows_win, "init-post-mswindows-win"); |
303 | |
304 DEFVAR_LISP ("mswindows-downcase-file-names", &Vmswindows_downcase_file_names /* | |
305 Non-nil means convert all-upper case file names to lower case. | |
306 This applies when performing completions and file name expansion.*/ ); | |
307 Vmswindows_downcase_file_names = Qnil; | |
308 | |
309 DEFVAR_LISP ("mswindows-get-true-file-attributes", &Vmswindows_get_true_file_attributes /* | |
310 "Non-nil means determine accurate link count in file-attributes. | |
311 This option slows down file-attributes noticeably, so is disabled by | |
312 default. Note that it is only useful for files on NTFS volumes, | |
313 where hard links are supported. | |
314 */ ); | |
315 Vmswindows_get_true_file_attributes = Qnil; | |
316 } | 303 } |
317 | 304 |
318 void | 305 void |
319 console_type_create_device_mswindows (void) | 306 console_type_create_device_mswindows (void) |
320 { | 307 { |
327 } | 314 } |
328 | 315 |
329 void | 316 void |
330 vars_of_device_mswindows (void) | 317 vars_of_device_mswindows (void) |
331 { | 318 { |
332 } | 319 DEFVAR_LISP ("mswindows-downcase-file-names", &Vmswindows_downcase_file_names /* |
320 Non-nil means convert all-upper case file names to lower case. | |
321 This applies when performing completions and file name expansion. | |
322 */ ); | |
323 Vmswindows_downcase_file_names = Qnil; | |
324 | |
325 DEFVAR_LISP ("mswindows-get-true-file-attributes", &Vmswindows_get_true_file_attributes /* | |
326 Non-nil means determine accurate link count in file-attributes. | |
327 This option slows down file-attributes noticeably, so is disabled by | |
328 default. Note that it is only useful for files on NTFS volumes, | |
329 where hard links are supported. | |
330 */ ); | |
331 Vmswindows_get_true_file_attributes = Qnil; | |
332 } |