mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-27 19:50:44 -07:00
c::*funs* may contain symbols (like CB marking closure boundary),
function structures (marking function definitions), or lists with the format (fname MACRO interpreted-function), to denote MACROLET expansions.
This commit is contained in:
parent
8209fc021e
commit
b0e60245a4
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@
|
|||
(when (or
|
||||
(member var *vars* :test #'eq)
|
||||
(member var *funs* :test #'eq :key
|
||||
#'(lambda (x) (unless (symbolp x) (fun-var x))))
|
||||
#'(lambda (x) (unless (or (consp x) (symbolp x)) (fun-var x))))
|
||||
(member var *blocks* :test #'eq :key
|
||||
#'(lambda (x) (unless (symbolp x) (blk-var x))))
|
||||
(member var *tags* :test #'eq :key
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue