1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-16 10:19:55 +00:00

By default, require and import extend current env.

This commit is contained in:
Calvin Rose 2024-05-15 07:40:21 -05:00
parent 60e22d9703
commit 0350834cd3

View File

@ -2958,7 +2958,7 @@
:core/stream path
(file/open path :rb)))
(def path-is-file (= f path))
(default env (make-env))
(default env (make-env (curenv)))
(def spath (string path))
(put env :source (or source (if-not path-is-file spath path)))
(var exit-error nil)