From 8569af05d8111654f1839f1cf50175a32b0bc547 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 10 Jan 2024 21:50:03 -0800 Subject: add shit --- src/stem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stem.c') diff --git a/src/stem.c b/src/stem.c index b9e0a16..1bea532 100644 --- a/src/stem.c +++ b/src/stem.c @@ -7,10 +7,10 @@ #include #include +/* Global variables defined */ array_t *STACK; array_t *EVAL_STACK; ht_t *WORD_TABLE; -char *INBUF; parser_t *PARSER; ht_t *FLIT; @@ -165,7 +165,7 @@ parser_t *parser_pp(char *s) { parser_t *p = init_parser(s); string_t *rstr = init_string(NULL); while (p->c != '\0') { - if (p->c == '#') { + if (p->c == '#') { /* Comment character is # in stem */ while (p->c != '\n' && p->c != '\0') { parser_move(p); } -- cgit