auctex-diffs
[Top][All Lists]
Advanced

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

master d58f4fdd: Don't use RESULT arg of dolist.


From: Tassilo Horn
Subject: master d58f4fdd: Don't use RESULT arg of dolist.
Date: Tue, 30 Aug 2022 02:38:49 -0400 (EDT)

branch: master
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 024a268d..810509bb 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]