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

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

Re: Finding Unused Identifiers


From: B. T. Raven
Subject: Re: Finding Unused Identifiers
Date: Thu, 02 Mar 2006 15:13:01 GMT

"Markus Triska" <triska@gmx.at> wrote in message
news:4406fc36$0$11610$3b214f66@tunews.univie.ac.at...
> Hi August,
>
> August Karlstrom wrote:
>
> >
> > Is there a way to find all unused identifiers in an Elisp file?
> >
>
> There's no programmatic way.
>
> All the best,
> Markus.

I probably don't even understand the question but, out of curiosity I ran
the following in *scratch*:

(boundp 't)
t
(boundp t)
t
(boundp 'v31416)
nil


Why can't the file be loaded, tokenized, and then run the list of tokens
against boundp? Or by "unused" do you mean something other than unbound?

Ed



reply via email to

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