You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is in violation to 3.4.7 which specifically allows the &environment parameter in defsetf lambda-lists.
Test case:
(defsetf foo (&environment env place) (value))
;; => Bad lambda list (&ENVIRONMENT ENV PLACE).
I'm not entirely sure if 3.4.7 requires &environment to come after the places, unlike other lambda-lists where &environment can be anywhere. In any case, late &environment also fails in the same fashion.
(defsetf foo (place &environment env) (value))
;; => Bad lambda list (PLACE &ENVIRONMENT ENV).
This is in violation to 3.4.7 which specifically allows the
&environment
parameter indefsetf
lambda-lists.Test case:
I'm not entirely sure if 3.4.7 requires
&environment
to come after the places, unlike other lambda-lists where&environment
can be anywhere. In any case, late&environment
also fails in the same fashion.Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: