mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 07:30:55 -08:00
Omit warning when referring to constant symbols that have been defined outside the compiled file.
This commit is contained in:
parent
31c1b568c5
commit
f840c19090
1 changed files with 1 additions and 1 deletions
|
|
@ -291,7 +291,7 @@
|
|||
(setf var (make-var :name name :kind kind :type type :loc (add-symbol name))))
|
||||
(push var *global-var-objects*)
|
||||
(when warn
|
||||
(unless (or (sys:specialp name) (check-global name))
|
||||
(unless (or (sys:specialp name) (constantp name) (check-global name))
|
||||
(undefined-variable name)
|
||||
(push var *undefined-vars*)))
|
||||
var))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue