aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorTed Zlatanov2014-12-12 19:15:10 -0500
committerTed Zlatanov2014-12-12 19:23:19 -0500
commit28e0d0c95d8e17e18e94744e99ccd68c8c911703 (patch)
treea45021bd7042b2008cf6084bd4019777b7575492 /lisp/progmodes/python.el
parentb81a1837916a7f3f7abd953338302fa237a532f2 (diff)
downloademacs-28e0d0c95d8e17e18e94744e99ccd68c8c911703.tar.gz
emacs-28e0d0c95d8e17e18e94744e99ccd68c8c911703.zip
Merge from origin/emacs-24
bd6c441 * simple.el (password-word-equivalents): Add "passcode", used for numeric secrets like PINs or RSA tokens. 16d4c1c A better fix for bug#19346 82ec808 * .gitignore: Add !lib/std*.in.h, so as to not ignore the .in.h files. 3cf7629 Git ignore lib/std*.h 301a401 Always define `gnutls-available-p' even if GnuTLS is not available. d76b9b2 Don't break example string between 2 lines (bug#19257) 75b4857 Port commit-msg to mawk 9ac0332 Improve commit-msg messages and autosquash 0c2f254 Support overflow-newline-into-fringe together with word-wrap (bug#19300) 935ee05 * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in order to determine `tramp-own-remote-path'. c2db939 python.el: Support interpreter paths with spaces d83f329 ChangeLog fix 0f9fbb9 Port commit-message checking to FreeBSD 9. 3db1ada admin/MAINTAINERS: Update my interests and responsibilities. 6382f24 * .gitignore: Ignore autosave files. Conflicts: ChangeLog lisp/progmodes/python.el src/gnutls.c
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
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