From 8fca205505a9a0a14c8fda5bf5aa59067443b422 Mon Sep 17 00:00:00 2001 From: Vasilij Schneidermann Date: Thu, 31 Oct 2024 19:07:23 +0100 Subject: [PATCH] Correctly escape backslash for syntax table --- circe.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circe.el b/circe.el index 783ad3d..ea5ac2d 100644 --- a/circe.el +++ b/circe.el @@ -952,7 +952,7 @@ This is either a channel or a nick name.") (defvar circe-nick-syntax-table (let ((table (make-syntax-table text-mode-syntax-table)) - (special (string-to-list "[]\`_^{}|-"))) + (special (string-to-list "[]\\`_^{}|-"))) (dolist (char special) (modify-syntax-entry char "w" table)) table)