changeset 78357:fb9000547438

(run-python): Fix path separator under w32.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sat, 28 Jul 2007 20:24:19 +0000
parents dc356155b0a7
children 9b7f2e8baaeb
files lisp/ChangeLog lisp/progmodes/python.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sat Jul 28 16:18:01 2007 +0000
+++ b/lisp/ChangeLog	Sat Jul 28 20:24:19 2007 +0000
@@ -1,3 +1,7 @@
+2007-07-28  Novitsky, Konstantin  <knovitsk@Bear.com>  (tiny change)
+
+	* progmodes/python.el (run-python): Fix path separator under w32.
+
 2007-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
 
 	* vc-git.el: New File.
--- a/lisp/progmodes/python.el	Sat Jul 28 16:18:01 2007 +0000
+++ b/lisp/progmodes/python.el	Sat Jul 28 20:24:19 2007 +0000
@@ -1351,7 +1351,7 @@
                (path (getenv "PYTHONPATH"))
                (process-environment	; to import emacs.py
                 (cons (concat "PYTHONPATH=" data-directory
-                              (if path (concat ":" path)))
+                              (if path (concat path-separator path)))
                       process-environment)))
           (apply 'make-comint-in-buffer "Python"
                  (if new (generate-new-buffer "*Python*") "*Python*")