From ad708ae59bae4d2746f68613ba3163de9323f98a Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Fri, 4 Mar 2005 17:15:50 +0000 Subject: [PATCH] (Fexpand_file_name) [VMS]: Don't upcase the name "manually"; this is now handled generally via FILE_SYSTEM_CASE. --- src/ChangeLog | 10 ++++++++-- src/fileio.c | 4 ---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 1702092aa1d..174d736b06d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,8 +1,14 @@ +2005-03-04 Thien-Thi Nguyen + + * s/vms.h (FILE_SYSTEM_CASE): New macro. + * fileio.c (Fexpand_file_name) [VMS]: Don't upcase the name + "manually"; this is now handled generally via FILE_SYSTEM_CASE. + 2005-03-04 YAMAMOTO Mitsuharu * emacs.c (main): Change `#ifdef HAVE_CARBON' to `#if defined (MAC_OSX) && defined (HAVE_CARBON)'. - + * image.c [!MAC_OSX && TARGET_API_MAC_CARBON]: Include QuickTime.h. @@ -52,7 +58,7 @@ * macterm.h (install_window_handler, remove_window_handler) (posix_pathname_to_fsspec, fsspec_to_posix_pathname) (mac_clear_font_name_table): New externs. - + 2005-03-03 Thien-Thi Nguyen * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined. 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); -- 2.39.2