diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index f1d8cff15ee..35e24e14e1c 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -2125,7 +2125,9 @@ uniqueness for different types of configurations." | |||
| 2125 | ;; `python-shell-interpreter' absolute path can be found by | 2125 | ;; `python-shell-interpreter' absolute path can be found by |
| 2126 | ;; `executable-find'. | 2126 | ;; `executable-find'. |
| 2127 | (format "%s %s" | 2127 | (format "%s %s" |
| 2128 | (executable-find python-shell-interpreter) | 2128 | ;; FIXME: Why executable-find? |
| 2129 | (shell-quote-argument | ||
| 2130 | (executable-find python-shell-interpreter)) | ||
| 2129 | python-shell-interpreter-args))) | 2131 | python-shell-interpreter-args))) |
| 2130 | 2132 | ||
| 2131 | (define-obsolete-function-alias | 2133 | (define-obsolete-function-alias |