diff options
| author | Eric Hanchrow | 2014-06-11 21:45:33 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-06-11 21:45:33 -0400 |
| commit | 846e6e843efd6e26d2db8848e7d000507585258e (patch) | |
| tree | a8187ca84e6a632665f2b969f01a525c20caa910 /lisp/progmodes/python.el | |
| parent | 1470c88c5be18d2aa0773515f50141efa21e202d (diff) | |
| download | emacs-846e6e843efd6e26d2db8848e7d000507585258e.tar.gz emacs-846e6e843efd6e26d2db8848e7d000507585258e.zip | |
* lisp/progmodes/python.el (run-python): Use read-shell-command.
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 436442da2d0..79fbe7faa27 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -2005,7 +2005,7 @@ process buffer for a list of commands.)" | |||
| 2005 | (interactive | 2005 | (interactive |
| 2006 | (if current-prefix-arg | 2006 | (if current-prefix-arg |
| 2007 | (list | 2007 | (list |
| 2008 | (read-string "Run Python: " (python-shell-parse-command)) | 2008 | (read-shell-command "Run Python: " (python-shell-parse-command)) |
| 2009 | (y-or-n-p "Make dedicated process? ") | 2009 | (y-or-n-p "Make dedicated process? ") |
| 2010 | (= (prefix-numeric-value current-prefix-arg) 4)) | 2010 | (= (prefix-numeric-value current-prefix-arg) 4)) |
| 2011 | (list (python-shell-parse-command) nil t))) | 2011 | (list (python-shell-parse-command) nil t))) |