help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: elisp - introspection - find all functions matching a certain string


From: metaperl.com
Subject: Re: elisp - introspection - find all functions matching a certain string
Date: Wed, 05 Sep 2007 20:58:52 -0000
User-agent: G2/1.0

On Sep 5, 4:04 pm, "metaperl.com" <metap...@gmail.com> wrote:
> How can I get a list of all the Emacs Lisp functions currently in
> memory which start with the string "asciidoc"
>
> Thanks

Ok I got it. apropos-internal is a C function and here is how I get
what I want:

  (setq apropos-accumulator
          (apropos-internal apropos-regexp (lambda (symbol) (functionp
symbol))))




reply via email to

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