Date: Sun, 16 Aug 1998 10:10:06 +0300 (IDT) From: Eli Zaretskii To: Andris Pavenis cc: Gerhard Gruber , djgpp AT delorie DOT com Subject: Re: -fxref bug? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Fri, 14 Aug 1998, Andris Pavenis wrote: > #define FILE_NAME_ABSOLUTE_P(NAME) \ > (((NAME)[0] == '/') || ((NAME)[0] == '\\') || \ > ((isalpha(NAME)[0]) && ((NAME)[1]==':'))) > > is even more better (we are excluding special symbols between > 'Z' and 'a') But that's just it: they should NOT be excluded. DOS supports up to 32 (not 26) drives, and at least Novell Netware indeed allows you to define 6 drives whose letters are between 'Z' and 'a'. Leaving them out would introduce subtle bugs in very rare cases.