This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  0c2eda1940e2efb89006d4353d234ce3cb66ecb0 (commit)
      from  3cf393d43da5778c7a22309e1b10a779d15d3bc8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0c2eda1940e2efb89006d4353d234ce3cb66ecb0
Author: Andrea Greselin <[email protected]>
Date:   Wed Dec 29 17:47:05 2021 +0100

    Properly destructure LaTeX-xparse-macro/environment-list entries
    
    * style/xparse.el (LaTeX-xparse-macro-parse): Properly destructure
    LaTeX-xparse-macro/environment-list entries (bug#52872).
    
    Copyright-paperwork-exempt: yes

diff --git a/style/xparse.el b/style/xparse.el
index fd9bb328..26934f1a 100644
--- a/style/xparse.el
+++ b/style/xparse.el
@@ -108,9 +108,9 @@ TYPE is one of the symbols mac or env."
   (dolist (xcmd (if (eq type 'mac)
                     (LaTeX-xparse-macro-list)
                   (LaTeX-xparse-environment-list)))
-    (let ((name (nth 1 xcmd))
-          (spec (nth 2 xcmd))
-          (what (nth 3 xcmd))
+    (let ((name (nth 0 xcmd))
+          (spec (nth 1 xcmd))
+          (what (nth 2 xcmd))
           args opt-star opt-token)
       (with-temp-buffer
         (set-syntax-table LaTeX-mode-syntax-table)

-----------------------------------------------------------------------

Summary of changes:
 style/xparse.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX

_______________________________________________
auctex-diffs mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/auctex-diffs

Reply via email to