summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 9e9dfa9..2e12fff 100644
--- a/main.c
+++ b/main.c
@@ -59,7 +59,7 @@ prompt(Rune *pr)
Datum *
evalline(Rune *line)
{
- Statement *stmts = lexline(line, globalsymtab);
+ Statement *stmts = lexline(line);
Datum *result = eval(stmts);
if(result)
return result;