From: Pip Cet Date: Sat, 14 Dec 2024 15:45:25 +0000 (+0000) Subject: Fix a typo which caused test failures X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ce26edb00ab462d0a03484d42642343e9375bce;p=emacs.git Fix a typo which caused test failures * lisp/progmodes/python.el (interpreter-mode-alist): * lisp/progmodes/vera-mode.el (interpreter-mode-alist): Fix typo. (cherry picked from commit 7024c66123e56501fd409a9b59522fceb5ce8cfd) --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 2c71fabd4fa..9358595a877 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -287,7 +287,7 @@ ;;;###autoload (add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode)) ;;;###autoload -(add-to-list 'interpreter-mode-alist '("python[0-9.]*" python-mode)) +(add-to-list 'interpreter-mode-alist '("python[0-9.]*" . python-mode)) (defgroup python nil "Python Language's flying circus support for Emacs."