summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <peter@pmikkelsen.com>2022-02-09 13:08:12 +0000
committerPeter Mikkelsen <peter@pmikkelsen.com>2022-02-09 13:08:12 +0000
commite195d66a333102924bae452ba09dc20cba4e96e6 (patch)
tree83ce2bd6c816eb9087b4c7f575e52e77ae8faa73 /apl9.h
parenta8f66d313a4ec83622e1e0fce3206a65c12324a9 (diff)
Since symbols now have pointers to their values, we don't need the symbol.undefined field anymore
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/apl9.h b/apl9.h
index 8b32141..3f592d9 100644
--- a/apl9.h
+++ b/apl9.h
@@ -158,7 +158,6 @@ struct Datum
struct Symbol
{
- int undefined;
Rune *name;
Datum *value;
Datum *(*getfn)(void);