[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master 6b5f00bf: Unquote lambdas in font-latex.el & tex-bar.el; add
From: |
Stefan Monnier |
Subject: |
Re: master 6b5f00bf: Unquote lambdas in font-latex.el & tex-bar.el; add some FIXMEs |
Date: |
Tue, 30 Aug 2022 09:07:58 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) |
> That's this :help function in LaTeX-symbols-toolbar-switch-contents:
>
> --8<---------------cut here---------------start------------->8---
> :help ,(lambda (&rest _ignore)
> (concat "Turn "
> (if LaTeX-symbols-toolbar-visible-flag "off " "on ")
> "the toolbar of LaTeX symbols (current class: "
> (nth (1- LaTeX-symbols-active-menuitem)
> (quote ,list-strings))
> ")")))
> --8<---------------cut here---------------end--------------->8---
Sorry, the
(quote ,list-strings)
should be just
list-strings
-- Stefan