branch: elpa/cdlatex commit f36e5351f688b8aad3ee5ec350e4120f2537e758 Author: Ben Ide <bc...@protonmail.com> Commit: GitHub <nore...@github.com>
Fixed regex in cdlatex-tab to support \(...\) --- cdlatex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdlatex.el b/cdlatex.el index e2e6be1f8c..260f8e89d9 100644 --- a/cdlatex.el +++ b/cdlatex.el @@ -889,7 +889,7 @@ Sounds strange? Try it out!" (forward-char 1) (delete-char 1)) (forward-char 4)) - (if (looking-at "[^_\\^({\\[]") + (if (looking-at "[^_^({[]") ;; stop after closing bracket, unless ^_[{( follow (throw 'stop t))) ((= (following-char) ?$)