Skip to content

Commit

Permalink
Fix &aux/&environment lambda list placement for newer, more persnickitey
Browse files Browse the repository at this point in the history
SBCL

close #5
  • Loading branch information
bobbysmith007 committed Jul 20, 2015
1 parent 4dcdc18 commit 799b848
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions access.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,9 @@

(define-setf-expander access (place k
&key type test key
&environment env
&aux (new-val (gensym "NEW-VAL"))
(place-store (gensym "PLACE")))
(place-store (gensym "PLACE"))
&environment env)
"This should allow setting places through access"
(declare (ignore env))
(values () ;; not using temp vars
Expand Down Expand Up @@ -588,9 +588,9 @@
(rec-set o (first keys) (rest keys))))

(define-setf-expander accesses (place &rest keys
&environment env
&aux (new-val (gensym "NEW-VAL"))
(place-store (gensym "PLACE")))
(place-store (gensym "PLACE"))
&environment env)
(declare (ignore env))
(values () ;; not using temp vars
() ;; not using temp vals
Expand Down

0 comments on commit 799b848

Please sign in to comment.