From: Eli Zaretskii Date: Thu, 21 Apr 2022 06:06:09 +0000 (+0300) Subject: Fix customization-group of 'python-forward-sexp-function' X-Git-Tag: emacs-28.1.90~117 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d4f564;p=emacs.git Fix customization-group of 'python-forward-sexp-function' * lisp/progmodes/python.el (python-forward-sexp-function): Make it be part of both 'python' and 'python-flymake' groups. (Bug#55027) Do not merge to master. --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 70828cb223a..f7f1784b172 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -5569,6 +5569,8 @@ By default messages are considered errors." (defcustom python-forward-sexp-function #'python-nav-forward-sexp "Function to use when navigating between expressions." :version "28.1" + :group 'python + :group 'python-flymake :type '(choice (const :tag "Python blocks" python-nav-forward-sexp) (const :tag "CC-mode like" nil) function))