Elsa icon indicating copy to clipboard operation
Elsa copied to clipboard

Add check for useless assignments

Open Fuco1 opened this issue 7 years ago • 0 comments

The implementation is related to #39.

We can have code like this:

(setq a 1) ;; this is useless
(other forms not using a)
(setq a 2) ;; a == 1 was never used
(setq b a)

So we look for variables/forms which are assigned but never read.

Fuco1 avatar Aug 24 '18 12:08 Fuco1