(run-python): Fix path separator under w32.

This commit is contained in:
Stefan Monnier 2007-07-28 20:24:19 +00:00
parent 1bee149590
commit 0b3ef4f1e5
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -1351,7 +1351,7 @@ buffer for a list of commands.)"
(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*")