Skip to content

Commit

Permalink
These are probably wrong.
Browse files Browse the repository at this point in the history
  • Loading branch information
brpocock committed Nov 23, 2016
1 parent 9aa44eb commit ca6699a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/compiler.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -1243,10 +1243,10 @@ generate the code which performs the transformation on these variables."
(define-builtin boundp (x)
(convert-to-bool `(!== (get ,x "value") undefined)))

(define-builtin fboundp (x)
(define-builtin fboundp (x) ; FIXME: unboundFunction
(convert-to-bool `(!== (get ,x "fvalue") undefined)))

(define-builtin %fboundp-setf (x)
(define-builtin %fboundp-setf (x) ; FIXME: unboundSetFFunction
(convert-to-bool `(!== (get ,x "setfValue") undefined)))

(define-builtin symbol-value (x)
Expand Down

0 comments on commit ca6699a

Please sign in to comment.