mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-17 03:10:58 -08:00
; * lisp/progmodes/c-ts-mode.el: Change rx to regexp-opt.
This commit is contained in:
parent
3bccef6f52
commit
16e68e64f9
1 changed files with 5 additions and 5 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue