summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--match.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/match.c b/match.c
index b187e13b..6a0d6ea2 100644
--- a/match.c
+++ b/match.c
@@ -4760,6 +4760,12 @@ static void syms_init(void)
data_s = intern(lit("data"), user_package);
fuzz_s = intern(lit("fuzz"), user_package);
counter_k = intern(lit("counter"), keyword_package);
+
+ /* These symbols must exist when TXR code is parsed
+ * in the context of an alternative package, rather than usr.
+ */
+ intern(lit("end"), user_package);
+ intern(lit("single"), user_package);
}
static void dir_tables_init(void)