aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorPip Cet2024-12-14 15:45:25 +0000
committerPip Cet2024-12-14 15:50:47 +0000
commit7024c66123e56501fd409a9b59522fceb5ce8cfd (patch)
treefee37ced517b8f6c288f80de664450e79d366a83 /lisp/progmodes/python.el
parent28dadb6f10aa7a0c785d79bb10d77babb7502dee (diff)
downloademacs-7024c66123e56501fd409a9b59522fceb5ce8cfd.tar.gz
emacs-7024c66123e56501fd409a9b59522fceb5ce8cfd.zip
Fix a typo which caused test failures
* lisp/progmodes/python.el (interpreter-mode-alist): * lisp/progmodes/vera-mode.el (interpreter-mode-alist): Fix typo.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
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 @@
291;;;###autoload 291;;;###autoload
292(add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode)) 292(add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode))
293;;;###autoload 293;;;###autoload
294(add-to-list 'interpreter-mode-alist '("python[0-9.]*" python-mode)) 294(add-to-list 'interpreter-mode-alist '("python[0-9.]*" . python-mode))
295 295
296(defgroup python nil 296(defgroup python nil
297 "Python Language's flying circus support for Emacs." 297 "Python Language's flying circus support for Emacs."