diff options
| author | Stefan Monnier | 2007-07-28 20:24:19 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-07-28 20:24:19 +0000 |
| commit | 0b3ef4f1e577e614026f21e4f936b09ec3826cf5 (patch) | |
| tree | 03db0327de29a95da7e672b9f5cda3c879a2f759 /lisp/progmodes/python.el | |
| parent | 1bee149590570b1e86079c49c6bf805088daf882 (diff) | |
| download | emacs-0b3ef4f1e577e614026f21e4f936b09ec3826cf5.tar.gz emacs-0b3ef4f1e577e614026f21e4f936b09ec3826cf5.zip | |
(run-python): Fix path separator under w32.
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
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.)" | |||
| 1351 | (path (getenv "PYTHONPATH")) | 1351 | (path (getenv "PYTHONPATH")) |
| 1352 | (process-environment ; to import emacs.py | 1352 | (process-environment ; to import emacs.py |
| 1353 | (cons (concat "PYTHONPATH=" data-directory | 1353 | (cons (concat "PYTHONPATH=" data-directory |
| 1354 | (if path (concat ":" path))) | 1354 | (if path (concat path-separator path))) |
| 1355 | process-environment))) | 1355 | process-environment))) |
| 1356 | (apply 'make-comint-in-buffer "Python" | 1356 | (apply 'make-comint-in-buffer "Python" |
| 1357 | (if new (generate-new-buffer "*Python*") "*Python*") | 1357 | (if new (generate-new-buffer "*Python*") "*Python*") |