]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/progmodes/c-ts-mode.el: allow loading file without treesit
authorMattias Engdegård <mattiase@acm.org>
Mon, 1 May 2023 17:08:12 +0000 (19:08 +0200)
committerMattias Engdegård <mattiase@acm.org>
Mon, 1 May 2023 17:09:47 +0000 (19:09 +0200)
lisp/progmodes/c-ts-mode.el

index 4971ed0b7c28009f5a7e0f246ed650c07a8ae12d..1f420689432ca725d7aa206a15d3ca3b3a68003f 100644 (file)
@@ -1001,13 +1001,14 @@ For BOL see `treesit-simple-indent-rules'."
       (looking-at c-ts-mode--for-each-tail-regexp))))
 
 (defvar c-ts-mode--emacs-c-range-query
-  (treesit-query-compile
-   'emacs-c `(((declaration
-                type: (macro_type_specifier
-                       name: (identifier) @_name)
-                @for-each-tail)
-               (:match ,c-ts-mode--for-each-tail-regexp
-                       @_name))))
+  (and (treesit-available-p)
+       (treesit-query-compile
+        'emacs-c `(((declaration
+                     type: (macro_type_specifier
+                            name: (identifier) @_name)
+                     @for-each-tail)
+                    (:match ,c-ts-mode--for-each-tail-regexp
+                            @_name)))))
   "Query that finds a FOR_EACH_* macro with an unbracketed body.")
 
 (defvar-local c-ts-mode--for-each-tail-ranges nil