From ce2c6eadf1a7f49465a51a4377f2705ce637715c Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Fri, 1 Jun 2001 03:56:50 +0000 Subject: Fix for EINTR problems when using jobserver. New translation files. Fix for @+ inside define macros being applied too widely. Various other bug fixes. --- dir.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dir.c') diff --git a/dir.c b/dir.c index c6c542c..bc926b9 100644 --- a/dir.c +++ b/dir.c @@ -725,7 +725,7 @@ file_impossible (filename) dir = find_directory ("[]"); #else dirend = strrchr (p, '/'); -#if defined (WINDOWS32) || defined (__MSDOS__) +# if defined (WINDOWS32) || defined (__MSDOS__) /* Forward and backslashes might be mixed. We need the rightmost one. */ { char *bslash = strrchr(p, '\\'); @@ -735,13 +735,13 @@ file_impossible (filename) if (!dirend && p[0] && p[1] == ':') dirend = p + 1; } -#endif /* WINDOWS32 or __MSDOS__ */ +# endif /* WINDOWS32 or __MSDOS__ */ if (dirend == 0) -#ifdef _AMIGA +# ifdef _AMIGA dir = find_directory (""); -#else /* !VMS && !AMIGA */ +# else /* !VMS && !AMIGA */ dir = find_directory ("."); -#endif /* AMIGA */ +# endif /* AMIGA */ #endif /* VMS */ else { -- cgit v1.2.3