From fb5b244727cb21328c8accbf9125e59a7cc46a91 Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Sat, 16 Dec 2023 11:54:56 +0100 Subject: [PATCH] Fix backslash being treated as an escape --- bqn-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/bqn-mode.el b/bqn-mode.el index 75ac90e..603daa4 100644 --- a/bqn-mode.el +++ b/bqn-mode.el @@ -174,6 +174,7 @@ (modify-syntax-entry ?# "<" table) (modify-syntax-entry ?\n ">" table) (modify-syntax-entry ?' "\"" table) + (modify-syntax-entry ?\\ "." table) table) "Syntax table for `bqn-mode'.")