aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorPham Huy Hoang2023-07-25 21:56:02 +0000
committerGitHub2023-07-25 21:56:02 +0000
commit75239a938f654d681ddb679ad68ae6469c026d5b (patch)
treece038ca8d29c4f3c62c4d13f4218fb1f3e7ae49e /runtime
parenta188282b37cd89e5d892493fa142497a2b723a58 (diff)
fix incorrect predicate in comment highlights (#7732)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/queries/comment/highlights.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/queries/comment/highlights.scm b/runtime/queries/comment/highlights.scm
index 3b25531a..6255d285 100644
--- a/runtime/queries/comment/highlights.scm
+++ b/runtime/queries/comment/highlights.scm
@@ -28,10 +28,10 @@
; Error level tags
((tag (name) @error)
- (match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
+ (#match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
("text" @error
- (match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
+ (#match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
(tag
(name) @ui.text