Kaydet (Commit) 234fd7e4 authored tarafından Jack Jansen's avatar Jack Jansen

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

filenames than space).
üst 44fff3cf
...@@ -33,7 +33,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -33,7 +33,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifdef macintosh #ifdef macintosh
#define SEP ':' #define SEP ':'
#define MAXPATHLEN 256 #define MAXPATHLEN 256
#define DELIM ' ' /* Mod by Jack: newline is less likely to occur in filenames than space */
#define DELIM '\n'
#endif #endif
#if defined(MSDOS) || defined(NT) #if defined(MSDOS) || defined(NT)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment