mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-13 04:42:13 -08:00
COMPILE-FILE only outputs NIL when there were serious errors
This commit is contained in:
parent
a4027bd364
commit
cee6703602
2 changed files with 2 additions and 2 deletions
|
|
@ -703,7 +703,7 @@ compiled successfully, returns the pathname of the compiled file"
|
|||
(setf warning-p t))
|
||||
((typep i '(or compiler-error warning))
|
||||
(setf warning-p t failure-p t)))
|
||||
finally (return (values (and (not failure-p) main-value) warning-p failure-p))))
|
||||
finally (return (values main-value warning-p failure-p))))
|
||||
|
||||
#-dlopen
|
||||
(defun compile (name &optional (def nil supplied-p))
|
||||
|
|
|
|||
|
|
@ -587,7 +587,7 @@ compiled successfully, returns the pathname of the compiled file"
|
|||
(setf warning-p t))
|
||||
((typep i '(or compiler-error warning))
|
||||
(setf warning-p t failure-p t)))
|
||||
finally (return (values (and (not failure-p) main-value) warning-p failure-p))))
|
||||
finally (return (values main-value warning-p failure-p))))
|
||||
|
||||
#-dlopen
|
||||
(defun compile (name &optional (def nil supplied-p))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue