Fix eval error

This commit is contained in:
Krzosa Karol
2025-12-14 08:18:17 +01:00
parent 83d5ddff9d
commit 0424ca62f2
2 changed files with 0 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
#define BUFFER_DEBUG 0
API Range MakeRange(Int a, Int b) {
Range result = {Min(a, b), Max(a, b)};
return result;

View File

@@ -333,7 +333,6 @@ function MatchExec(s, meta)
return {kind = "exec_console", cmd = s:sub(2, -1), working_dir = GetMainDir()}
end
Eval(s)
return nil
end