summaryrefslogtreecommitdiff
path: root/lisp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lisp.c')
-rw-r--r--lisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp.c b/lisp.c
index e6dc02e..cbd92b2 100644
--- a/lisp.c
+++ b/lisp.c
@@ -87,7 +87,7 @@ int main(void) {
char* line;
while ((line = readline("λ > ")) != NULL) {
if (*line) add_history(line);
- yy_scan_string(line); // feed input to Flex/Bison
+ yy_scan_string(line);
yyparse();
free(line);
}