From: Yuan Fu Date: Fri, 2 Dec 2022 02:57:54 +0000 (-0800) Subject: ; * lisp/progmodes/c-ts-mode.el: Change rx to regexp-opt. X-Git-Tag: emacs-29.0.90~1385 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16e68e64f924e99d0ad823dcfa9f7b7cc8975b50;p=emacs.git ; * lisp/progmodes/c-ts-mode.el: Change rx to regexp-opt. --- diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el index f802a6ddb2d..ad64df6143c 100644 --- a/lisp/progmodes/c-ts-mode.el +++ b/lisp/progmodes/c-ts-mode.el @@ -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.