aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPip Cet2024-12-14 15:45:25 +0000
committerPip Cet2024-12-14 15:50:47 +0000
commit7024c66123e56501fd409a9b59522fceb5ce8cfd (patch)
treefee37ced517b8f6c288f80de664450e79d366a83
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.
-rw-r--r--lisp/progmodes/python.el2
-rw-r--r--lisp/progmodes/vera-mode.el2
2 files changed, 2 insertions, 2 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."
diff --git a/lisp/progmodes/vera-mode.el b/lisp/progmodes/vera-mode.el
index b3002127ff1..6897ae34805 100644
--- a/lisp/progmodes/vera-mode.el
+++ b/lisp/progmodes/vera-mode.el
@@ -208,7 +208,7 @@ If nil, TAB always indents current line."
208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
209;; Mode definition 209;; Mode definition
210 210
211;;;###autoload (add-to-list 'auto-mode-alist '("\\.vr[hi]?\\'" vera-mode)) 211;;;###autoload (add-to-list 'auto-mode-alist '("\\.vr[hi]?\\'" . vera-mode))
212 212
213;;;###autoload 213;;;###autoload
214(define-derived-mode vera-mode prog-mode "Vera" 214(define-derived-mode vera-mode prog-mode "Vera"