]> git.eshelyaron.com Git - emacs.git/commitdiff
Silence warning when requiring ruby-ts-mode
authorStefan Kangas <stefankangas@gmail.com>
Mon, 6 Nov 2023 07:51:59 +0000 (08:51 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Mon, 6 Nov 2023 07:52:22 +0000 (08:52 +0100)
* lisp/progmodes/ruby-ts-mode.el: Silence warning when requiring
file without a treesitter grammar.

lisp/progmodes/ruby-ts-mode.el

index fabe5859779de8a62e554a77d3c3ed7be3a879e3..4f85e1c63ff3a07e550fc8ca1ff922e3f1e80907 100644 (file)
@@ -25,7 +25,7 @@
 ;;; Commentary:
 
 ;; This file defines ruby-ts-mode which is a major mode for editing
-;; Ruby files that uses Tree Sitter to parse the language. More
+;; Ruby files that uses Tree Sitter to parse the language.  More
 ;; information about Tree Sitter can be found in the ELisp Info pages
 ;; as well as this website: https://tree-sitter.github.io/tree-sitter/
 
@@ -1198,7 +1198,7 @@ leading double colon is not added."
       (syntax-ppss-flush-cache (cl-loop for r in ranges
                                         minimize (car r))))))
 
-(if (treesit-ready-p 'ruby)
+(if (treesit-ready-p 'ruby t)
     ;; Copied from ruby-mode.el.
     (add-to-list 'auto-mode-alist
                  (cons (concat "\\(?:\\.\\(?:"