branch: elpa commit 201ed15e8914e11ed4398ecb322c90cc42ba19fd Author: Arash Esbati <esb...@gmx.de> Commit: Tassilo Horn <t...@gnu.org>
Fix a misplaced closing parenthesis * style/splitidx.el (LaTeX-splitidx-auto-cleanup): Fix a misplaced closing parenthesis. --- style/splitidx.el | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/style/splitidx.el b/style/splitidx.el index e299b5a..0c3ddf0 100644 --- a/style/splitidx.el +++ b/style/splitidx.el @@ -126,8 +126,8 @@ 1 LaTeX-auto-index-entry)) ;; Cater for completion (add-to-list 'TeX-complete-list - `(,(concat "\\\\" elt "{\\([^{}\n\r]*\\)" - 1 LaTeX-index-entry-list "}"))) ))) + `(,(concat "\\\\" elt "{\\([^{}\n\r]*\\)") + 1 LaTeX-index-entry-list "}")) ))) (add-hook 'TeX-auto-prepare-hook #'LaTeX-splitidx-auto-prepare t) (add-hook 'TeX-auto-cleanup-hook #'LaTeX-splitidx-auto-cleanup t)