aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-03-18 02:58:45 +0000
committerStefan Monnier2004-03-18 02:58:45 +0000
commit72d967dd1a5b543dcebd2fb952788470ac60f337 (patch)
tree6251aebb649689c5276c61ab8fdb79ec32b80029
parent186f9ad113998e2f9c8caa43b872fd5ad51d38be (diff)
downloademacs-72d967dd1a5b543dcebd2fb952788470ac60f337.tar.gz
emacs-72d967dd1a5b543dcebd2fb952788470ac60f337.zip
(Fread_file_name): Set completion-ignore-case for case-insensitive systems.
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 73771591994..3f17da7033d 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6218,7 +6218,7 @@ provides a file dialog box. */)
6218 } 6218 }
6219 6219
6220 count = SPECPDL_INDEX (); 6220 count = SPECPDL_INDEX ();
6221#ifdef VMS 6221#if defined VMS || defined DOS_NT || defined MAC_OSX
6222 specbind (intern ("completion-ignore-case"), Qt); 6222 specbind (intern ("completion-ignore-case"), Qt);
6223#endif 6223#endif
6224 6224