mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-22 20:42:03 -08:00
cmp: prevent spurious error when the compile function fails
This commit is contained in:
parent
abf33455f6
commit
71babf1f99
1 changed files with 1 additions and 1 deletions
|
|
@ -829,7 +829,7 @@ after compilation."
|
|||
(cmp-delete-file h-pathname)
|
||||
(cmp-delete-file so-pathname)
|
||||
(mapc 'cmp-delete-file tmp-names)
|
||||
(let ((output (or name (symbol-value 'GAZONK))))
|
||||
(let ((output (or name (and (boundp 'GAZONK) (symbol-value 'GAZONK)))))
|
||||
;; By unsetting GAZONK we avoid spurious references to the
|
||||
;; loaded code.
|
||||
(set 'GAZONK nil)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue