From fdfadd6f467063dc83032b4e0dbe4e7b96690670 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 4 May 2024 14:51:05 +0300 Subject: [PATCH] ; Fix last change * lisp/progmodes/python.el (python-shell-compilation-regexp-alist): Add :version. (Bug#70653) --- lisp/progmodes/python.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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." "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()") 1 2)) "`compilation-error-regexp-alist' for inferior Python." - :type '(alist regexp)) + :type '(alist regexp) + :version "30.1") (defcustom python-shell-dedicated nil "Whether to make Python shells dedicated by default.