emacs-devel
[Top][All Lists]
Advanced

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

Re: list of elisp primitives ?


From: Eduardo Ochs
Subject: Re: list of elisp primitives ?
Date: Sun, 22 Dec 2019 00:21:22 -0300

Try this:

(defun fboundp-and-subrp (symbol)
  (and (fboundp symbol) (subrp (symbol-function symbol))))

(setq my-primitives (apropos-internal "^.*$" 'fboundp-and-subrp))

(defun my-describe (symbol) (format "(describe-function '%S)\n" symbol))

(insert (mapconcat 'my-describe my-primitives ""))


On Sun, 22 Dec 2019 at 00:01, Jean-Christophe Helary <address@hidden> wrote:
Is there a list of elisp primitive functions defined in C somewhere ?

I was thinking that because of the sheer amount of functions in the elisp reference, it might be much easier to start programming with the primitives to understand how elisp works at its core, and then climb the ladder when need arises...



Jean-Christophe Helary
-----------------------------------------------
http://mac4translators.blogspot.com @brandelune




reply via email to

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