Skip to content

Commit

Permalink
Correctly escape backslash for syntax table
Browse files Browse the repository at this point in the history
  • Loading branch information
wasamasa committed Oct 31, 2024
1 parent 2e70481 commit 8fca205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circe.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8fca205

Please sign in to comment.