summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-24 21:42:35 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-24 21:42:35 +0000
commit5a5136ef9f981a603ca2e933e47cfd3a178be7cc (patch)
treefa086c71deaa2b82ad1644bb66fe69181ed1804b /apl9.h
parentfbbd0b34314d58cc4d210e5ff07c2726fdadd659 (diff)
Don't open symbols when lexing
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apl9.h b/apl9.h
index b19c686..cb71b2b 100644
--- a/apl9.h
+++ b/apl9.h
@@ -135,7 +135,7 @@ struct Datum
Function func;
Operator operator;
int hybrid;
- Symbol *symbol;
+ Rune *name;
};
};
@@ -251,6 +251,7 @@ Array *rundfn(Rune *, Datum *, Datum *, Array *, Array *);
Array *runtrain(Function *, int, Array *, Array *, Array *);
/* quadnames.c */
+void initquadnames(void);
Datum quadnamedatum(QuadnameDef);
/* error.c */