]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix customization group of python-forward-sexp-function
authorKévin Le Gouguec <kevin.legouguec@gmail.com>
Sun, 14 Nov 2021 01:30:06 +0000 (02:30 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 14 Nov 2021 01:30:06 +0000 (02:30 +0100)
* lisp/progmodes/python.el (python-forward-sexp-function): Move from
the "Flymake integration" subsection to the "Navigation" subsection,
so that the option is sorted into the 'python' group rather than the
'python-flymake' group (bug#51807).

lisp/progmodes/python.el

index b12b22e992e526fe720a7f6cf7279ccf104a61be..47d8d1ce8ec8cc46fbc0492f9f9047b7bbea1efd 100644 (file)
@@ -1427,6 +1427,13 @@ marks the next defun after the ones already marked."
 \f
 ;;; Navigation
 
+(defcustom python-forward-sexp-function #'python-nav-forward-sexp
+  "Function to use when navigating between expressions."
+  :version "28.1"
+  :type '(choice (const :tag "Python blocks" python-nav-forward-sexp)
+                 (const :tag "CC-mode like" nil)
+                 function))
+
 (defvar python-nav-beginning-of-defun-regexp
   (python-rx line-start (* space) defun (+ space) (group symbol-name))
   "Regexp matching class or function definition.
@@ -5572,13 +5579,6 @@ By default messages are considered errors."
   :type '(alist :key-type (regexp)
                 :value-type (symbol)))
 
-(defcustom python-forward-sexp-function #'python-nav-forward-sexp
-  "Function to use when navigating between expressions."
-  :version "28.1"
-  :type '(choice (const :tag "Python blocks" python-nav-forward-sexp)
-                 (const :tag "CC-mode like" nil)
-                 function))
-
 (defvar-local python--flymake-proc nil)
 
 (defun python--flymake-parse-output (source proc report-fn)