mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 07:30:55 -08:00
Do not use backward slashes in cygwin (M.Goffioul)
This commit is contained in:
parent
153c044bc8
commit
6691404feb
1 changed files with 5 additions and 1 deletions
|
|
@ -238,7 +238,11 @@ typedef unsigned @CL_FIXNUM_TYPE@ cl_hashkey;
|
|||
|
||||
#if defined(MSDOS) || defined(cygwin) || defined(mingw32)
|
||||
# define IS_DIR_SEPARATOR(x) ((x=='/')||(x=='\\'))
|
||||
# define DIR_SEPARATOR '\\'
|
||||
# ifdef MSDOS
|
||||
# define DIR_SEPARATOR '\\'
|
||||
# else
|
||||
# define DIR_SEPARATOR '/'
|
||||
# endif
|
||||
# define PATH_SEPARATOR ';'
|
||||
#else
|
||||
# define IS_DIR_SEPARATOR(x) (x=='/')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue