From 0b3ef4f1e577e614026f21e4f936b09ec3826cf5 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sat, 28 Jul 2007 20:24:19 +0000 Subject: [PATCH] (run-python): Fix path separator under w32. --- lisp/ChangeLog | 4 ++++ lisp/progmodes/python.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fc21fc33ffa..9a1178c1f98 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-07-28 Novitsky, Konstantin (tiny change) + + * progmodes/python.el (run-python): Fix path separator under w32. + 2007-07-28 Dan Nicolaescu * vc-git.el: New File. diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 1a84d461dba..ca18f772970 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -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*") -- 2.39.2