1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-13 17:10:27 +00:00

Merge pull request #551 from pepe/remove-redundant-do

Remove redundant do
This commit is contained in:
Calvin Rose 2021-01-07 10:38:21 -06:00 committed by GitHub
commit daa37c22f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3222,10 +3222,9 @@
(use-2 evaluator (tuple/slice source 1))
# Import-like form
(importers head)
(do
(let [[l c] (tuple/sourcemap source)
newtup (tuple/setmap (tuple ;source :evaluator evaluator) l c)]
((compile newtup env where)))))))
(let [[l c] (tuple/sourcemap source)
newtup (tuple/setmap (tuple ;source :evaluator evaluator) l c)]
((compile newtup env where))))))
(defn flycheck
``Check a file for errors without running the file. Found errors will be printed to stderr