diff options
| author | Richard M. Stallman | 1996-06-03 21:17:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-03 21:17:31 +0000 |
| commit | 0c04091e600fd02cc01c5f735f033ad81924eaed (patch) | |
| tree | 77306548c6eef2899bef84b02fa576ea258ad965 /src/w32proc.c | |
| parent | f94988a7337042820e301494dbb3db8ec6995305 (diff) | |
| download | emacs-0c04091e600fd02cc01c5f735f033ad81924eaed.tar.gz emacs-0c04091e600fd02cc01c5f735f033ad81924eaed.zip | |
(Vwin32_downcase_file_names): New variable.
(syms_of_win32fns): DEF_VAR it.
Diffstat (limited to 'src/w32proc.c')
| -rw-r--r-- | src/w32proc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/w32proc.c b/src/w32proc.c index d537bd5d3a2..62b373e642f 100644 --- a/src/w32proc.c +++ b/src/w32proc.c | |||
| @@ -57,6 +57,10 @@ Lisp_Object Vwin32_quote_process_args; | |||
| 57 | but is useful for Win32 processes on both Win95 and NT as well. */ | 57 | but is useful for Win32 processes on both Win95 and NT as well. */ |
| 58 | Lisp_Object Vwin32_pipe_read_delay; | 58 | Lisp_Object Vwin32_pipe_read_delay; |
| 59 | 59 | ||
| 60 | /* Control conversion of upper case file names to lower case. | ||
| 61 | nil means no, t means yes. */ | ||
| 62 | Lisp_Object Vwin32_downcase_file_names; | ||
| 63 | |||
| 60 | /* Keep track of whether we have already started a DOS program, and | 64 | /* Keep track of whether we have already started a DOS program, and |
| 61 | whether we can run them in the first place. */ | 65 | whether we can run them in the first place. */ |
| 62 | BOOL can_run_dos_process; | 66 | BOOL can_run_dos_process; |
| @@ -1177,5 +1181,10 @@ reading the subprocess output. If negative, the magnitude is the number\n\ | |||
| 1177 | of time slices to wait (effectively boosting the priority of the child\n\ | 1181 | of time slices to wait (effectively boosting the priority of the child\n\ |
| 1178 | process temporarily). A value of zero disables waiting entirely."); | 1182 | process temporarily). A value of zero disables waiting entirely."); |
| 1179 | Vwin32_pipe_read_delay = 50; | 1183 | Vwin32_pipe_read_delay = 50; |
| 1184 | |||
| 1185 | DEFVAR_LISP ("win32-downcase-file-names", &Vwin32_downcase_file_names, | ||
| 1186 | "Non-nil means convert all-upper case file names to lower case.\n\ | ||
| 1187 | This applies when performing completions and file name expansion."); | ||
| 1188 | Vwin32_downcase_file_names = Qnil; | ||
| 1180 | } | 1189 | } |
| 1181 | /* end of ntproc.c */ | 1190 | /* end of ntproc.c */ |