diff options
| author | Stefan Monnier | 2004-03-18 02:58:45 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-18 02:58:45 +0000 |
| commit | 72d967dd1a5b543dcebd2fb952788470ac60f337 (patch) | |
| tree | 6251aebb649689c5276c61ab8fdb79ec32b80029 /src | |
| parent | 186f9ad113998e2f9c8caa43b872fd5ad51d38be (diff) | |
| download | emacs-72d967dd1a5b543dcebd2fb952788470ac60f337.tar.gz emacs-72d967dd1a5b543dcebd2fb952788470ac60f337.zip | |
(Fread_file_name): Set completion-ignore-case for case-insensitive systems.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
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 | ||