emacs-devel
[Top][All Lists]
Advanced

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

Re: elisp code to list interactive functions


From: Po Lu
Subject: Re: elisp code to list interactive functions
Date: Fri, 05 Nov 2021 08:12:27 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Lars Ingebrigtsen <larsi@gnus.org> writes:

> I thought somebody had extended the seq functions to also work on these
> thingies, but I guess not?

I think not, and that you will have to use mapatoms for them.  Something
along the lines of:

  (let (commands)
    (mapatoms (lambda (atom)
                (when (commandp atom)
                  (push atom commands))))
    commands)


reply via email to

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