diff options
| author | Eli Zaretskii | 2022-04-21 09:06:09 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-04-21 09:06:09 +0300 |
| commit | 4d4f5640ef0f1501bab174ae8d1b3759ba2b6ccc (patch) | |
| tree | 24eb3e87af5782ebcb60e80044689f2e41cb4006 /lisp/progmodes/python.el | |
| parent | dbb2dd6939867abe50c0894be9ba4e09c96f6759 (diff) | |
| download | emacs-4d4f5640ef0f1501bab174ae8d1b3759ba2b6ccc.tar.gz emacs-4d4f5640ef0f1501bab174ae8d1b3759ba2b6ccc.zip | |
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.
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 2 insertions, 0 deletions
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." | |||
| 5569 | (defcustom python-forward-sexp-function #'python-nav-forward-sexp | 5569 | (defcustom python-forward-sexp-function #'python-nav-forward-sexp |
| 5570 | "Function to use when navigating between expressions." | 5570 | "Function to use when navigating between expressions." |
| 5571 | :version "28.1" | 5571 | :version "28.1" |
| 5572 | :group 'python | ||
| 5573 | :group 'python-flymake | ||
| 5572 | :type '(choice (const :tag "Python blocks" python-nav-forward-sexp) | 5574 | :type '(choice (const :tag "Python blocks" python-nav-forward-sexp) |
| 5573 | (const :tag "CC-mode like" nil) | 5575 | (const :tag "CC-mode like" nil) |
| 5574 | function)) | 5576 | function)) |