emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/latex-table-wizard 78aaa5b18b 67/70: Fix bug in parsing


From: ELPA Syncer
Subject: [elpa] externals/latex-table-wizard 78aaa5b18b 67/70: Fix bug in parsing function
Date: Sat, 13 May 2023 08:59:15 -0400 (EDT)

branch: externals/latex-table-wizard
commit 78aaa5b18b9b9ebeb3052671d77d1b9a9b27bca6
Author: Enrico Flor <enrico@eflor.net>
Commit: Enrico Flor <enrico@eflor.net>

    Fix bug in parsing function
---
 latex-table-wizard.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/latex-table-wizard.el b/latex-table-wizard.el
index 25645a8074..4796d1eb2d 100644
--- a/latex-table-wizard.el
+++ b/latex-table-wizard.el
@@ -5,7 +5,7 @@
 ;; Author: Enrico Flor <enrico@eflor.net>
 ;; Maintainer: Enrico Flor <enrico@eflor.net>
 ;; URL: https://github.com/enricoflor/latex-table-wizard
-;; Version: 1.4.1
+;; Version: 1.4.2
 ;; Keywords: convenience
 
 ;; Package-Requires: ((emacs "27.1") (auctex "12.1") (transient "0.3.7"))
@@ -454,11 +454,14 @@ argument."
                  (setq end end-of-previous-cell
                        end-of-row t)
                  (latex-table-wizard--skip-stuff lim)))
-              ((looking-at "$")
+              ((looking-at "\\$")
                (unless (ignore-errors (forward-sexp))
                  (forward-char 1)))
               ((looking-at "\\\\(\\|\\\\\\[")
                (TeX-search-unescaped "\\\\)\\|\\\\\\]" 'forward t nil t))
+              ((looking-at "[[:space:]]*\\\\\\(begin[\[{]\\)")
+               (goto-char (match-beginning 1))
+               (LaTeX-find-matching-end))
               (macro
                (goto-char (nth 1 macro)))
               (t (forward-char 1)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]