From 34097368e87b3cd365c63771c72ff833333161c4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 1 May 1996 23:24:44 +0000 Subject: [PATCH] (Fexpand_file_name) [DOS_NT]: Correct the `if' clause to compile on all platforms. --- src/fileio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fileio.c b/src/fileio.c index 1065a5aa113..f979cb2ab48 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -1164,13 +1164,13 @@ See also the function `substitute-in-file-name'.") /* Finally, if no prefix has been specified and nm is not absolute, then it must be expanded relative to default_directory. */ - if ( + if (1 #ifndef DOS_NT /* /... alone is not absolute on DOS and Windows. */ - !IS_DIRECTORY_SEP (nm[0]) + && !IS_DIRECTORY_SEP (nm[0]) #endif #ifdef WINDOWSNT - !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) + && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) #endif #ifdef VMS && !index (nm, ':') -- 2.39.2