From d5a09404f0661e58a36e320995d92ba40724f8a4 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Sep 2021 16:29:58 +0200 Subject: emacs/bqn-symbols.el: properly escape brackets () and [] are part of elisp syntax, so they should be escaped in character literals (but don't have to). This change fixes a warning I missed previously. --- editors/emacs/bqn-symbols.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'editors') diff --git a/editors/emacs/bqn-symbols.el b/editors/emacs/bqn-symbols.el index acc59666..2d07c914 100644 --- a/editors/emacs/bqn-symbols.el +++ b/editors/emacs/bqn-symbols.el @@ -29,10 +29,10 @@ ("thorn" "⍕" ?*) ;; 9 ("high-minus" "¯" ?9) - ("open-angle" "⟨" ?() + ("open-angle" "⟨" ?\() ;; 0 ("bullet" "•" ?0) - ("close-angle" "⟩" ?)) + ("close-angle" "⟩" ?\)) ;; - ("division-sign" "÷" ?-) ("root" "√" ?_) @@ -69,10 +69,10 @@ ("pi" "π" ?p) ("iota" "⍳" ?P) ;; [ - ("left-arrow" "←" ?[) + ("left-arrow" "←" ?\[) ("left-tack" "⊣" ?{) ;; ] - ("right-arrow" "→" ?]) + ("right-arrow" "→" ?\]) ("right-tack" "⊢" ?}) ;; \ ("backslash" "\\" ?\\) -- cgit v1.2.3