Skip to content

Commit

Permalink
Remove unused lexical variable FDEFINITION.
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-strandh committed Sep 20, 2020
1 parent d7ccedd commit ef16a09
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Code/Environment-Clostrum/trucler-methods.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@
(if (special-operator client environment name)
(make-instance 'trucler:special-operator-description
:name name)
(let ((fdefinition (fdefinition client environment name)))
(make-instance 'trucler:global-function-description
:name name
:compiler-macro (compiler-macro-function client environment name)))))))
(make-instance 'trucler:global-function-description
:name name
:compiler-macro (compiler-macro-function client environment name))))))
(t
(make-instance 'trucler:global-function-description
:name name
Expand Down

0 comments on commit ef16a09

Please sign in to comment.