[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Finding Unused Identifiers
From: |
Markus Triska |
Subject: |
Re: Finding Unused Identifiers |
Date: |
Sun, 05 Mar 2006 16:13:42 +0100 |
User-agent: |
Mozilla Thunderbird 1.0.7 (X11/20051010) |
Hi August,
August Karlstrom wrote:
The last line is (of course) incorrect. Should be
The comment "that are never accessed in the same buffer" is also incorrect:
(defvar falsepositive 0)
(eval `(print ,(intern (concat "false" "positive"))))
==>
Found unused global identifier(s):
falsepositive
Hyphenated identifiers can yield false negatives:
(defvar has-hyphen 0)
(print 'has)
==>
No unused global identifiers found.
All the best,
Markus.
- Re: Finding Unused Identifiers, (continued)
- Re: Finding Unused Identifiers, B. T. Raven, 2006/03/02
- Re: Finding Unused Identifiers, Markus Triska, 2006/03/02
- Re: Finding Unused Identifiers, August Karlstrom, 2006/03/02
- Re: Finding Unused Identifiers, Peter Tury, 2006/03/03
- Re: Finding Unused Identifiers, Pascal Bourguignon, 2006/03/03
- Re: Finding Unused Identifiers, Markus Triska, 2006/03/03
- Re: Finding Unused Identifiers, Pascal Bourguignon, 2006/03/06
- Re: Finding Unused Identifiers, Markus Triska, 2006/03/06
- Re: Finding Unused Identifiers, August Karlstrom, 2006/03/06
- Re: Finding Unused Identifiers, August Karlstrom, 2006/03/06
- Re: Finding Unused Identifiers,
Markus Triska <=
- Re: Finding Unused Identifiers, August Karlstrom, 2006/03/06
- Re: Finding Unused Identifiers, Kevin Rodgers, 2006/03/08
- Message not available
- Re: Finding Unused Identifiers, August Karlstrom, 2006/03/09