From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keith Seitz To: Christopher Faylor Cc: Subject: Re: [RFA] defs.h _WIN32 defined by Win98, too Date: Thu, 02 Aug 2001 13:57:00 -0000 Message-id: References: <20010802164006.A30764@redhat.com> X-SW-Source: 2001-08/msg00055.html On Thu, 2 Aug 2001, Christopher Faylor wrote: > >> ChangeLog > >> 2001-08-01 Keith Seitz > >> > >> * defs.h (SLASH_STRING): If not defined, set > >> to "/", regardless of _WIN32, __CYGWIN__, or > >> whatnot. > > > >This should be fine, I think, but Chris should have the definitive word. > > This looks fine to me, too. > > Please check it in. Done. FYI officially: 2001-08-02 Keith Seitz * defs.h (SLASH_STRING): If not defined, set to "/", regardless of _WIN32, __CYGWIN__, or whatnot. Index: defs.h =================================================================== RCS file: /cvs/src/src/gdb/defs.h,v retrieving revision 1.61 diff -u -p -r1.61 defs.h --- defs.h 2001/08/01 18:39:23 1.61 +++ defs.h 2001/08/02 20:53:47 @@ -1338,11 +1338,7 @@ extern int use_windows; #endif #ifndef SLASH_STRING -#ifdef _WIN32 -#define SLASH_STRING "\\" -#else #define SLASH_STRING "/" -#endif #endif #ifdef __MSDOS__