Skip to content

Commit 234fd7e

Browse files
committed
Use \n as PYTHONPATH delimiter on Mac (less likely to occur in
filenames than space).
1 parent 44fff3c commit 234fd7e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Include/osdefs.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3333
#ifdef macintosh
3434
#define SEP ':'
3535
#define MAXPATHLEN 256
36-
#define DELIM ' '
36+
/* Mod by Jack: newline is less likely to occur in filenames than space */
37+
#define DELIM '\n'
3738
#endif
3839

3940
#if defined(MSDOS) || defined(NT)

0 commit comments

Comments
 (0)