Defined path delimiter for MS-DOS as semicolon

This commit is contained in:
Guido van Rossum 1991-05-05 20:14:35 +00:00
parent 541c8c0b2e
commit eb4361af6c
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ Data members:
#define DELIM ' '
#endif
#ifdef MSDOS
#define DELIM ';'
#endif
#ifndef DELIM
#define DELIM ':'
#endif