s-expressionists / Eclector

A portable Common Lisp reader that is highly customizable, can recover from errors and can return concrete syntax trees
https://s-expressionists.github.io/Eclector/
BSD 2-Clause "Simplified" License
108 stars 9 forks source link

Fix a few ignored variables #80

Closed Bike closed 8 months ago

Bike commented 8 months ago

SBCL treats all method parameters as ignorable, but this is not required by the standard. Noticed these on Clasp.

The source location functions are deprecated anyway but I think it would be pretty confusing for anyone using them to just lose their client specializations? If it's intentional there should be (declare (ignore client)) instead.

scymtym commented 8 months ago

Integrated in 03e7274, thanks.