# HG changeset patch # User Richard M. Stallman # Date 833836577 0 # Node ID 6fd4e01fd332ca4f5855cc830d671e7dad57774b # Parent af013b84d1adad087d3965c56c341bb746949842 (DRIVE_LETTER): [DOS_NT] New macro. (expand_file_name): Apply DRIVE_LETTER macro to drive names. diff -r af013b84d1ad -r 6fd4e01fd332 src/fileio.c --- a/src/fileio.c Mon Jun 03 20:06:27 1996 +0000 +++ b/src/fileio.c Mon Jun 03 21:16:17 1996 +0000 @@ -102,9 +102,12 @@ redirector allows the six letters between 'Z' and 'a' as well. */ #ifdef MSDOS #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z') +#define DRIVE_LETTER(x) (x) #endif #ifdef WINDOWSNT #define IS_DRIVE(x) isalpha (x) +extern Lisp_Object Vwin32_downcase_file_names; +#define DRIVE_LETTER(x) (NILP (Vwin32_downcase_file_names) ? (x) : tolower (x)) #endif #endif @@ -1065,7 +1068,7 @@ if (strcmp (nm - 2, XSTRING (name)->data) != 0) { name = make_string (nm - 2, p - nm + 2); - XSTRING (name)->data[0] = drive; + XSTRING (name)->data[0] = DRIVE_LETTER (drive); XSTRING (name)->data[1] = ':'; } return name; @@ -1159,7 +1162,7 @@ { /* Either nm starts with /, or drive isn't mounted. */ newdir = alloca (4); - newdir[0] = drive; + newdir[0] = DRIVE_LETTER (drive); newdir[1] = ':'; newdir[2] = '/'; newdir[3] = 0; @@ -1407,7 +1410,7 @@ { if (!drive) abort (); target -= 2; - target[0] = drive; + target[0] = DRIVE_LETTER (drive); target[1] = ':'; } CORRECT_DIR_SEPS (target);