From 3a1b7e643ce294868af243a4fe90ab125e9038e5 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 28 Feb 2024 09:57:09 -0500 Subject: [PATCH] fix(emacs): escape certain character literals Signed-off-by: Lucas Sta Maria --- .emacs.d/include/latexconfig.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/include/latexconfig.el b/.emacs.d/include/latexconfig.el index 5d67856..26017e5 100644 --- a/.emacs.d/include/latexconfig.el +++ b/.emacs.d/include/latexconfig.el @@ -46,7 +46,7 @@ (defconst bcs (char-to-string bc)) (forward-char) (not (or (string-blank-p bcs) - (memq bc '(?\ ?( ?) ?{ ?} ?[ ?]))))) + (memq bc '(?\ ?\( ?\( ?{ ?} ?\[ ?\]))))) (defun insert-raw-slash () "Insert a `/'."