1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

; * lisp/progmodes/c-ts-mode.el: Change rx to regexp-opt.

This commit is contained in:
Yuan Fu 2022-12-01 18:57:54 -08:00
parent 3bccef6f52
commit 16e68e64f9
No known key found for this signature in database
GPG Key ID: 56E19BC57664A442

View File

@ -525,11 +525,11 @@ the subtrees."
;; Navigation.
(setq-local treesit-defun-type-regexp
(rx (or "function_definition"
"type_definition"
"struct_specifier"
"enum_specifier"
"union_specifier")))
(regexp-opt '("function_definition"
"type_definition"
"struct_specifier"
"enum_specifier"
"union_specifier")))
;; Nodes like struct/enum/union_specifier can appear in
;; function_definitions, so we need to find the top-level node.