]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix customization-group of 'python-forward-sexp-function'
authorEli Zaretskii <eliz@gnu.org>
Thu, 21 Apr 2022 06:06:09 +0000 (09:06 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 21 Apr 2022 06:06:09 +0000 (09:06 +0300)
* 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.

lisp/progmodes/python.el

index 70828cb223a2688bc0dfc9e950d064c13bcf3430..f7f1784b172459f2a9b16fcdd1709414a1f84928 100644 (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))