jscl
jscl copied to clipboard
Bug: function 'load' with :output key
It bug into _load_eval_bundle_
(load "./aaa.lisp" :output "./one.js")
;=> The bundle up 5 expressions into ./one.js
(load "./aaa.lisp" :output "./one.js")
;=> The bundle up 10 expressions into ./one.js
See Issuer #345 for details.
Must be:
(defun _load_eval_bundle_ (input verbose bundle-name place hook)
(let (stream eof code expr rc (code-stor nil) fbundle)
Something like this.
Path for issuer will be asap.
Sorry.