]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use \n as PYTHONPATH delimiter on Mac (less likely to occur in
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 14 Dec 1994 12:57:12 +0000 (12:57 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 14 Dec 1994 12:57:12 +0000 (12:57 +0000)
filenames than space).

Include/osdefs.h

index c84043f6fb49752cf2bd9f94fbdef6a6215bf3aa..fd05298d8caaa033d21b146218429cc435b349cd 100644 (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)