Use \n as PYTHONPATH delimiter on Mac (less likely to occur in

filenames than space).
This commit is contained in:
Jack Jansen 1994-12-14 12:57:12 +00:00
parent 44fff3cfb5
commit 234fd7e4bb
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifdef macintosh
#define SEP ':'
#define MAXPATHLEN 256
#define DELIM ' '
/* Mod by Jack: newline is less likely to occur in filenames than space */
#define DELIM '\n'
#endif
#if defined(MSDOS) || defined(NT)