aboutsummaryrefslogtreecommitdiff
path: root/src/stem.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stem.c')
-rw-r--r--src/stem.c4
1 files changed, 2 insertions, 2 deletions
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 <stem.h>
#include <string.h>
+/* 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);
}