jscl icon indicating copy to clipboard operation
jscl copied to clipboard

Bug: function 'load' with :output key

Open vlad-km opened this issue 6 years ago • 0 comments

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.

vlad-km avatar Jan 01 '19 20:01 vlad-km