aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-05-04 14:51:05 +0300
committerEli Zaretskii2024-05-04 14:51:05 +0300
commitfdfadd6f467063dc83032b4e0dbe4e7b96690670 (patch)
tree72f21e789c346958c9a0de06c13223057444a7dc
parentbfb31a06acadd5e819a3cb8dc6886122e53646f3 (diff)
downloademacs-fdfadd6f467063dc83032b4e0dbe4e7b96690670.tar.gz
emacs-fdfadd6f467063dc83032b4e0dbe4e7b96690670.zip
; Fix last change
* lisp/progmodes/python.el (python-shell-compilation-regexp-alist): Add :version. (Bug#70653)
-rw-r--r--lisp/progmodes/python.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index e332bd8f61e..7f28f583543 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -2871,7 +2871,8 @@ virtualenv."
2871 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()") 2871 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()")
2872 1 2)) 2872 1 2))
2873 "`compilation-error-regexp-alist' for inferior Python." 2873 "`compilation-error-regexp-alist' for inferior Python."
2874 :type '(alist regexp)) 2874 :type '(alist regexp)
2875 :version "30.1")
2875 2876
2876(defcustom python-shell-dedicated nil 2877(defcustom python-shell-dedicated nil
2877 "Whether to make Python shells dedicated by default. 2878 "Whether to make Python shells dedicated by default.