From 165bef622b370ec7d1de95bcb2a1ef59070aee49 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 11 Mar 2023 11:34:54 -0700 Subject: consfigurator.el.in: consistently use single chars not strings in rx Signed-off-by: Sean Whitton --- emacs/consfigurator.el.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.3