aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2023-03-11 11:34:54 -0700
committerSean Whitton <spwhitton@spwhitton.name>2023-03-11 11:34:54 -0700
commit165bef622b370ec7d1de95bcb2a1ef59070aee49 (patch)
treec43f8a1781233c9f723f9bb67b8d9a9dea2ff22f
parent7a438afe3743de523f9d025b1e1d484d3d68113f (diff)
downloadconsfigurator-165bef622b370ec7d1de95bcb2a1ef59070aee49.tar.gz
consfigurator.el.in: consistently use single chars not strings in rx
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--emacs/consfigurator.el.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/consfigurator.el.in b/emacs/consfigurator.el.in
index 9dc732a..9a3723a 100644
--- a/emacs/consfigurator.el.in
+++ b/emacs/consfigurator.el.in
@@ -144,7 +144,7 @@ Modes that use this should add `syntax-propertize-multiline' to
;; Also recognise Let Over Lambda's #~ and a #!~ negated version.
;; We might want to add these to Consfigurator's readtable.
((rx (group-n 1
- (: ?# (| (: ?? (group-n 2 (opt (| "rx" "r" "x"))))
+ (: ?# (| (: ?? (group-n 2 (opt (| "rx" ?r ?x))))
(: (opt ?!) ?~ (group-n 2 (opt (| "tr" ?m ?s ?y)))))))
(group-n 3 nonl))
(1 (and (not (in-string-or-comment-p))