diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index c9a69a924e0..bb2aa37ca61 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -272,6 +272,15 @@ | |||
| 272 | (defvar compilation-error-regexp-alist) | 272 | (defvar compilation-error-regexp-alist) |
| 273 | (defvar outline-heading-end-regexp) | 273 | (defvar outline-heading-end-regexp) |
| 274 | 274 | ||
| 275 | (declare-function treesit-parser-create "treesit.c") | ||
| 276 | (declare-function treesit-induce-sparse-tree "treesit.c") | ||
| 277 | (declare-function treesit-node-child-by-field-name "treesit.c") | ||
| 278 | (declare-function treesit-node-type "treesit.c") | ||
| 279 | (declare-function treesit-node-start "treesit.c") | ||
| 280 | (declare-function treesit-node-end "treesit.c") | ||
| 281 | (declare-function treesit-node-parent "treesit.c") | ||
| 282 | |||
| 283 | |||
| 275 | (autoload 'comint-mode "comint") | 284 | (autoload 'comint-mode "comint") |
| 276 | (autoload 'help-function-arglist "help-fns") | 285 | (autoload 'help-function-arglist "help-fns") |
| 277 | 286 | ||