summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuan Fu <casouri@gmail.com>2024-04-08 21:07:11 -0700
committerYuan Fu <casouri@gmail.com>2024-04-08 22:44:03 -0700
commit407e85ce139c2f0ab8bc7f9643ee7506a4e561a1 (patch)
tree60ff6b8b46fa868cd920422711acffd5abe776e2
parentaca5064f128e20a495e9ddf254248ab77b613754 (diff)
downloademacs-407e85ce139c2f0ab8bc7f9643ee7506a4e561a1.tar.gz
emacs-407e85ce139c2f0ab8bc7f9643ee7506a4e561a1.tar.bz2
emacs-407e85ce139c2f0ab8bc7f9643ee7506a4e561a1.zip
Fix c++-ts-mode defun navigation (bug#65885)
* lisp/progmodes/c-ts-mode.el (c-ts-base-mode): Add BOL and EOL marker in the regexp.
-rw-r--r--lisp/progmodes/c-ts-mode.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el
index e69856baecc..a7a416b94f4 100644
--- a/lisp/progmodes/c-ts-mode.el
+++ b/lisp/progmodes/c-ts-mode.el
@@ -1155,7 +1155,9 @@ BEG and END are described in `treesit-range-rules'."
"struct_specifier"
"enum_specifier"
"union_specifier"
- "class_specifier"
+ ;; Make sure this doesn't match
+ ;; storage_class_specifier.
+ "^class_specifier$"
"namespace_definition")
(and c-ts-mode-emacs-sources-support
'(;; DEFUN.