comparison src/fileio.c @ 5212:4f98237e23fc

Automated merge with ssh://sperber-guest@hg.debian.org//hg/xemacs/xemacs
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 16 May 2010 12:49:49 +0100
parents cdca98f2d36f
children c096d8051f89 308d34e9f07d
comparison
equal deleted inserted replaced
5210:23f00bfd78a4 5212:4f98237e23fc
105 int inhibit_auto_save_session; 105 int inhibit_auto_save_session;
106 106
107 int disable_auto_save_when_buffer_shrinks; 107 int disable_auto_save_when_buffer_shrinks;
108 108
109 Lisp_Object Vdirectory_sep_char; 109 Lisp_Object Vdirectory_sep_char;
110
111 int default_file_system_ignore_case;
110 112
111 #ifdef HAVE_FSYNC 113 #ifdef HAVE_FSYNC
112 /* Nonzero means skip the call to fsync in Fwrite-region. */ 114 /* Nonzero means skip the call to fsync in Fwrite-region. */
113 int write_region_inhibit_fsync; 115 int write_region_inhibit_fsync;
114 #endif 116 #endif
4558 This variable affects the built-in functions only on Windows, 4560 This variable affects the built-in functions only on Windows,
4559 on other platforms, it is initialized so that Lisp code can find out 4561 on other platforms, it is initialized so that Lisp code can find out
4560 what the normal separator is. 4562 what the normal separator is.
4561 */ ); 4563 */ );
4562 Vdirectory_sep_char = make_char (DEFAULT_DIRECTORY_SEP); 4564 Vdirectory_sep_char = make_char (DEFAULT_DIRECTORY_SEP);
4565
4566 DEFVAR_CONST_BOOL ("default-file-system-ignore-case", &default_file_system_ignore_case /*
4567 What `file-system-ignore-case-p' returns by default.
4568 This is in the case that nothing in `file-system-case-alist' matches.
4569 */ );
4570 #ifdef DEFAULT_FILE_SYSTEM_IGNORE_CASE
4571 default_file_system_ignore_case = DEFAULT_FILE_SYSTEM_IGNORE_CASE;
4572 #else
4573 default_file_system_ignore_case = 0;
4574 #endif
4563 } 4575 }
4564 4576
4565 void 4577 void
4566 reinit_vars_of_fileio (void) 4578 reinit_vars_of_fileio (void)
4567 { 4579 {