branch: externals/auctex
commit d58f4fdd7efc031cbd9251864ca375e53f3e1a77
Author: Tassilo Horn <t...@gnu.org>
Commit: Tassilo Horn <t...@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