From 7024c66123e56501fd409a9b59522fceb5ce8cfd Mon Sep 17 00:00:00 2001 From: Pip Cet Date: Sat, 14 Dec 2024 15:45:25 +0000 Subject: Fix a typo which caused test failures * lisp/progmodes/python.el (interpreter-mode-alist): * lisp/progmodes/vera-mode.el (interpreter-mode-alist): Fix typo. --- lisp/progmodes/python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/progmodes/python.el') diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index cdc1f267ea3..253568119f2 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -291,7 +291,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." -- cgit v1.2.1