From cf22c826a68ccf33fa3f093f7dc9da956d69127e Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Thu, 25 Apr 2002 21:46:33 +0000 Subject: [PATCH] Fix typo in the setup of interpreter-mode-alist. --- Misc/python-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index e9d38e1bb9..aed8df4d85 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -1149,7 +1149,7 @@ It is added to `interpreter-mode-alist' and `py-choose-shell'. ("python" . python-mode)))) (while modes (when (not (assoc (car modes) interpreter-mode-alist)) - (push modes interpreter-mode-alist)) + (push (car modes) interpreter-mode-alist)) (setq modes (cdr modes)))) (when (not (or (rassq 'python-mode auto-mode-alist) -- 2.40.0