auctex-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/auctex d58f4fdd7e 05/23: Don't use RESULT arg of dolist


From: Tassilo Horn
Subject: [elpa] externals/auctex d58f4fdd7e 05/23: Don't use RESULT arg of dolist.
Date: Thu, 20 Oct 2022 14:53:17 -0400 (EDT)

branch: externals/auctex
commit d58f4fdd7efc031cbd9251864ca375e53f3e1a77
Author: Tassilo Horn <tsdh@gnu.org>
Commit: Tassilo Horn <tsdh@gnu.org>

    Don't use RESULT arg of dolist.
    
    * tex-bar.el (menu-strings-buttons-alist): Don't use RESULT arg of
    dolist.
---
 tex-bar.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tex-bar.el b/tex-bar.el
index 024a268d30..810509bb14 100644
--- a/tex-bar.el
+++ b/tex-bar.el
@@ -454,10 +454,10 @@ format of the argument MEANING-ALIST in the mentioned 
function."
                               (cons (cons menu-str (list menu-buttons))
                                     menu-strings-alist-temp)))))))))))
        (list-strings (let* ((list-str-temp))
-                       (dolist (i menu-strings-buttons-alist
-                                  (nreverse list-str-temp))
+                       (dolist (i menu-strings-buttons-alist)
                          (setq list-str-temp (cons (car i)
-                                                   list-str-temp))))))
+                                                   list-str-temp)))
+                       (nreverse list-str-temp))))
   (defvar LaTeX-symbols-toolbar-visible-flag nil
     "Non-nil means that the LaTeX symbols on toolbar are visible.
 Internal variable.")




reply via email to

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