From 84c66625e5ef268ec958a04eb61ba8f2beb2ea02 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sat, 5 Oct 2024 11:48:36 +0200 Subject: ; Minor cleanup of python-interpreter variable * lisp/progmodes/python.el (python-interpreter) (python-shell-interpreter): Simplify definition. --- lisp/progmodes/python.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 173a9bc3692..c85db018eb1 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -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. -- cgit v1.2.1