From: Richard M. Stallman Date: Wed, 1 May 1996 23:24:44 +0000 (+0000) Subject: (Fexpand_file_name) [DOS_NT]: Correct the `if' clause X-Git-Tag: emacs-19.34~738 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=34097368e87b3cd365c63771c72ff833333161c4;p=emacs.git (Fexpand_file_name) [DOS_NT]: Correct the `if' clause to compile on all platforms. --- 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, ':')