1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 22:53:16 +00:00

Rename level const to not to shadow line in eval1

This commit is contained in:
Josef Pospíšil 2021-05-31 21:51:31 +02:00
parent ab974c409d
commit a4325372e2

View File

@ -2210,12 +2210,12 @@
(array/clear lints)
(def res (compile source env where lints))
(each [level line col msg] lints
(def l (get lint-levels level 0))
(def lvl (get lint-levels level 0))
(cond
(<= l lint-error) (do
(set good false)
(on-compile-error msg nil where (or line l) (or col c)))
(<= l lint-warning) (on-compile-warning msg level where (or line l) (or col c))))
(<= lvl lint-error) (do
(set good false)
(on-compile-error msg nil where (or line l) (or col c)))
(<= lvl lint-warning) (on-compile-warning msg level where (or line l) (or col c))))
(when good
(if (= (type res) :function)
(evaluator res source env where)