summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-03 21:17:31 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-03 21:17:31 +0000
commitfc4a4cb745caed45dee9e2f11ecedb82c5c11f14 (patch)
treed33da97c4c00bf442cad88b4d275ce19cb783ec2
parent8d98ea2303d5d0636ec2e7282dc3d89777fd8f71 (diff)
downloademacs-fc4a4cb745caed45dee9e2f11ecedb82c5c11f14.tar.gz
(Vwin32_downcase_file_names): New variable.
(syms_of_win32fns): DEF_VAR it.
-rw-r--r--src/w32proc.c9
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;
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 @@ reading the subprocess output. If negative, the magnitude is the number\n\
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 */