]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fexpand_file_name) [VMS]: Don't upcase the name
authorThien-Thi Nguyen <ttn@gnuvola.org>
Fri, 4 Mar 2005 17:15:50 +0000 (17:15 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Fri, 4 Mar 2005 17:15:50 +0000 (17:15 +0000)
"manually"; this is now handled generally via FILE_SYSTEM_CASE.

src/ChangeLog
src/fileio.c

index 1702092aa1d1b54efbde23d360c4ac839907349a..174d736b06de2e5b8a8141a6b59a5caca7154f78 100644 (file)
@@ -1,8 +1,14 @@
+2005-03-04  Thien-Thi Nguyen  <ttn@gnu.org>
+
+       * 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  <mituharu@math.s.chiba-u.ac.jp>
 
        * 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  <ttn@gnu.org>
 
        * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined.
index 196bb9243414537eb157d4c50b408e4a4e9306de..ee03e63cc143345cc08226dfe933066e46d8561e 100644 (file)
@@ -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);