mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 22:07:36 +00:00
(Fexpand_file_name) [VMS]: Don't upcase the name "manually";
this is now handled generally via FILE_SYSTEM_CASE.
This commit is contained in:
parent
030d4f6224
commit
0fe6ab5fc9
2 changed files with 6 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2005-03-03 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-03 Thien-Thi Nguyen <ttn@gnu.org>
|
||||
|
||||
* fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined.
|
||||
|
|
|
|||
|
|
@ -1081,10 +1081,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 = XSTRING (name)->data;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue