1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-18 19:29:56 +00:00

Restore :source property to keep import* working at REPL

This commit is contained in:
Andrew Owen 2021-01-15 02:59:17 -07:00
parent c4a95e9a1e
commit 7f74ff3dd7

View File

@ -3378,8 +3378,10 @@
(file/read stdin :line buf))
(def env (make-env))
(when-let [profile.janet (dyn :profilepath)]
(def new-env (dofile profile.janet :exit true :env env))
(merge-module env new-env "" false))
(def src (env :source))
(def new-env (dofile profile.janet :exit true :source "profile.janet"))
(merge-module env new-env "" false)
(put env :source src))
(if *debug* (put env :debug true))
(def getter (if *raw-stdin* getstdin getline))
(defn getchunk [buf p]