changeset 15325:5c8e4ef3137c

(Vwin32_downcase_file_names): New variable. (syms_of_win32fns): DEF_VAR it.
author Richard M. Stallman <rms@gnu.org>
date Mon, 03 Jun 1996 21:17:31 +0000
parents 6fd4e01fd332
children ea444efb0b95
files src/w32proc.c
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/w32proc.c	Mon Jun 03 21:16:17 1996 +0000
+++ b/src/w32proc.c	Mon Jun 03 21:17:31 1996 +0000
@@ -57,6 +57,10 @@
    but is useful for Win32 processes on both Win95 and NT as well.  */
 Lisp_Object Vwin32_pipe_read_delay;
 
+/* Control conversion of upper case file names to lower case.
+   nil means no, t means yes. */
+Lisp_Object Vwin32_downcase_file_names;
+
 /* Keep track of whether we have already started a DOS program, and
    whether we can run them in the first place. */
 BOOL can_run_dos_process;
@@ -1177,5 +1181,10 @@
 of time slices to wait (effectively boosting the priority of the child\n\
 process temporarily).  A value of zero disables waiting entirely.");
   Vwin32_pipe_read_delay = 50;
+
+  DEFVAR_LISP ("win32-downcase-file-names", &Vwin32_downcase_file_names,
+    "Non-nil means convert all-upper case file names to lower case.\n\
+This applies when performing completions and file name expansion.");
+  Vwin32_downcase_file_names = Qnil;
 }
 /* end of ntproc.c */