summaryrefslogtreecommitdiff
path: root/lisp/progmodes/go-ts-mode.el
diff options
context:
space:
mode:
authorYuan Fu <casouri@gmail.com>2023-03-03 13:59:54 -0800
committerYuan Fu <casouri@gmail.com>2023-03-03 14:01:05 -0800
commitda8e4b6fe43c0cb3c1ca08ac53f2957fe48291f1 (patch)
treed534ca0699d0d98444b9ff3ebc708408ee090274 /lisp/progmodes/go-ts-mode.el
parent7548446194afdd3cd26851001565294da2732e29 (diff)
downloademacs-da8e4b6fe43c0cb3c1ca08ac53f2957fe48291f1.tar.gz
emacs-da8e4b6fe43c0cb3c1ca08ac53f2957fe48291f1.tar.bz2
emacs-da8e4b6fe43c0cb3c1ca08ac53f2957fe48291f1.zip
Revert previous change in go-ts-mode.el
Reverts 59365f928565f1be551b1697b9246b00cb87a9b7 and 56cd810b9d1a4d537bee5a2fd954d6e0d346631a. Reverting because the use of treesit-ready-p is very much intentional. * lisp/progmodes/go-ts-mode.el (treesit-ready-p): Revert change.
Diffstat (limited to 'lisp/progmodes/go-ts-mode.el')
-rw-r--r--lisp/progmodes/go-ts-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/go-ts-mode.el b/lisp/progmodes/go-ts-mode.el
index fbe085a2c6c..e8f93d14744 100644
--- a/lisp/progmodes/go-ts-mode.el
+++ b/lisp/progmodes/go-ts-mode.el
@@ -393,7 +393,7 @@ what the parent of the node would be if it were a node."
(treesit-major-mode-setup)))
-(if (treesit-language-available-p 'gomod)
+(if (treesit-ready-p 'gomod)
(add-to-list 'auto-mode-alist '("/go\\.mod\\'" . go-mod-ts-mode)))
(provide 'go-ts-mode)