diff options
| author | Eli Zaretskii | 2023-02-05 19:10:39 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-02-05 19:10:39 +0200 |
| commit | 948e343496bce96fcc5f2ccb702e4be2c549096e (patch) | |
| tree | 842bcd4f0501459605a2ff888ce43450b7772517 | |
| parent | 6568a1aaf9a97107947e801d1c3328a3119f0957 (diff) | |
| download | emacs-948e343496bce96fcc5f2ccb702e4be2c549096e.tar.gz emacs-948e343496bce96fcc5f2ccb702e4be2c549096e.zip | |
; Fix byte-compilation warning
* lisp/progmodes/rust-ts-mode.el (treesit-query-compile): Avoid
byte-compilation warning.
| -rw-r--r-- | lisp/progmodes/rust-ts-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/rust-ts-mode.el b/lisp/progmodes/rust-ts-mode.el index 3beaa741605..571e268c221 100644 --- a/lisp/progmodes/rust-ts-mode.el +++ b/lisp/progmodes/rust-ts-mode.el | |||
| @@ -38,6 +38,7 @@ | |||
| 38 | (declare-function treesit-node-start "treesit.c") | 38 | (declare-function treesit-node-start "treesit.c") |
| 39 | (declare-function treesit-node-type "treesit.c") | 39 | (declare-function treesit-node-type "treesit.c") |
| 40 | (declare-function treesit-node-parent "treesit.c") | 40 | (declare-function treesit-node-parent "treesit.c") |
| 41 | (declare-function treesit-query-compile "treesit.c") | ||
| 41 | 42 | ||
| 42 | (defcustom rust-ts-mode-indent-offset 4 | 43 | (defcustom rust-ts-mode-indent-offset 4 |
| 43 | "Number of spaces for each indentation step in `rust-ts-mode'." | 44 | "Number of spaces for each indentation step in `rust-ts-mode'." |