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.
This commit is contained in:
Eli Zaretskii 2022-04-21 09:06:09 +03:00
parent dbb2dd6939
commit 4d4f5640ef

View file

@ -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))