1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 05:01:02 -08:00

; Minor cleanup of python-interpreter variable

* lisp/progmodes/python.el (python-interpreter)
(python-shell-interpreter): Simplify definition.
This commit is contained in:
Stefan Kangas 2024-10-05 11:48:36 +02:00
parent 50e5221236
commit 84c66625e5

View file

@ -316,7 +316,6 @@
(defcustom python-interpreter
(cond ((executable-find "python") "python")
((executable-find "python3") "python3")
(t "python3"))
"Python interpreter for noninteractive use.
Some Python interpreters also require changes to
@ -2742,7 +2741,6 @@ position, else returns nil."
(defcustom python-shell-interpreter
(cond ((executable-find "python") "python")
((executable-find "python3") "python3")
(t "python3"))
"Python interpreter for interactive use.