summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-05-01 23:24:44 +0000
committerRichard M. Stallman <rms@gnu.org>1996-05-01 23:24:44 +0000
commit34097368e87b3cd365c63771c72ff833333161c4 (patch)
tree9380c32a634ec8dfbd0d62c8831b14c6a2764a15 /src/fileio.c
parent8b09e5d05c3ffa597702346cc4d181ef9a3077cf (diff)
downloademacs-34097368e87b3cd365c63771c72ff833333161c4.tar.gz
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
to compile on all platforms.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c6
1 files 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, ':')