]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "; * lisp/progmodes/c-ts-mode.el: allow loading file without treesit"
authorEli Zaretskii <eliz@gnu.org>
Tue, 2 May 2023 12:43:51 +0000 (15:43 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 2 May 2023 12:43:51 +0000 (15:43 +0300)
This reverts commit 7d246c359cf3d25cab5134076e393c4d25015827.
The same problem was already fixed on the release branch,and this
change will just cause merge conflicts.

lisp/progmodes/c-ts-mode.el

index 1f420689432ca725d7aa206a15d3ca3b3a68003f..4971ed0b7c28009f5a7e0f246ed650c07a8ae12d 100644 (file)
@@ -1001,14 +1001,13 @@ For BOL see `treesit-simple-indent-rules'."
       (looking-at c-ts-mode--for-each-tail-regexp))))
 
 (defvar c-ts-mode--emacs-c-range-query
-  (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)))))
+  (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