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

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

[elpa] externals/latex-table-wizard c3b1802c1e 29/70: Syntax-quote lists


From: ELPA Syncer
Subject: [elpa] externals/latex-table-wizard c3b1802c1e 29/70: Syntax-quote lists
Date: Sat, 13 May 2023 08:59:12 -0400 (EDT)

branch: externals/latex-table-wizard
commit c3b1802c1ec27bb9ca182ed416a45293b2fbbe64
Author: Enrico Flor <nericoflor@gmail.com>
Commit: Enrico Flor <nericoflor@gmail.com>

    Syntax-quote lists
---
 latex-table-wizard.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/latex-table-wizard.el b/latex-table-wizard.el
index abd7c7ce9e..4c09ce85f9 100644
--- a/latex-table-wizard.el
+++ b/latex-table-wizard.el
@@ -466,10 +466,10 @@ F, C precedes D and so on; and if DIR is either 
\\='next\\=' or
                   (latex-table-wizard--get-thing 'row table))))
     (if (not same-line)
         (sort table (lambda (x y)
-                      (let ((rows (list (plist-get x :row)
-                                        (plist-get y :row)))
-                            (cols (list (plist-get x :column)
-                                        (plist-get y :column))))
+                      (let ((rows `(,(plist-get x :row)
+                                    ,(plist-get y :row)))
+                            (cols `(,(plist-get x :column)
+                                    ,(plist-get y :column))))
                         (cond ((and vert (apply #'= cols))
                                (apply #'< rows))
                               (vert



reply via email to

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