diff options
author | Theodor Thornhill <theo@thornhill.no> | 2024-07-21 12:51:42 +0200 |
---|---|---|
committer | Theodor Thornhill <theo@thornhill.no> | 2024-07-21 12:51:42 +0200 |
commit | cdca1ba2e9dbbe2bb469c91179cdda4fd4585bb0 (patch) | |
tree | 9ed2974bbc21cdb71ded60e917bf28410632d90b /lisp | |
parent | 5c08fd80d27c61512d1f3f5cf9c38e2d5c3a5c18 (diff) | |
download | emacs-cdca1ba2e9dbbe2bb469c91179cdda4fd4585bb0.tar.gz emacs-cdca1ba2e9dbbe2bb469c91179cdda4fd4585bb0.tar.bz2 emacs-cdca1ba2e9dbbe2bb469c91179cdda4fd4585bb0.zip |
; Fix typo
* lisp/treesit.el (treesit-ready-p): Minor typo fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/treesit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/treesit.el b/lisp/treesit.el index 42215333699..c91864725da 100644 --- a/lisp/treesit.el +++ b/lisp/treesit.el @@ -2977,7 +2977,7 @@ instead of emitting a warning." (catch 'term (when (not (treesit-available-p)) (setq msg (if (fboundp 'treesit-node-p) - ;; Windows loads tree-sitter dynakically. + ;; Windows loads tree-sitter dynamically. "tree-sitter library is not available or failed to load" "Emacs is not compiled with tree-sitter library")) (throw 'term nil)) |