diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-03-04 17:15:50 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-03-04 17:15:50 +0000 |
commit | ad708ae59bae4d2746f68613ba3163de9323f98a (patch) | |
tree | fbbc3ea0f70b5ba77fa74021155efd88d9515ae3 /src/fileio.c | |
parent | f56ced441ea9542f7317bfd1a953286776ade0d5 (diff) | |
download | emacs-ad708ae59bae4d2746f68613ba3163de9323f98a.tar.gz |
(Fexpand_file_name) [VMS]: Don't upcase the name
"manually"; this is now handled generally via FILE_SYSTEM_CASE.
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/fileio.c b/src/fileio.c index 196bb924341..ee03e63cc14 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -1122,10 +1122,6 @@ See also the function `substitute-in-file-name'. */) UNGCPRO; } -#ifdef VMS - /* Filenames on VMS are always upper case. */ - name = Fupcase (name); -#endif name = FILE_SYSTEM_CASE (name); nm = SDATA (name); |