summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-10-02 06:30:53 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-10-02 06:30:53 -0700
commit19b8654f3cc6b51e8c22138b42bee7031bef151a (patch)
treef13ac18facac098a0170de7bac7945ab6f03766e /eval.c
parent08ab2f0565a0ca837971b4d042fed2a381292eca (diff)
downloadtxr-19b8654f3cc6b51e8c22138b42bee7031bef151a.tar.gz
txr-19b8654f3cc6b51e8c22138b42bee7031bef151a.tar.bz2
txr-19b8654f3cc6b51e8c22138b42bee7031bef151a.zip
bugfix: macro-time not bound as special operator.
* eval.c (eval_init): Bind macro-time to op_error. * genvim.txr: No longer manually add macro-time to txl-orig-sym.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 12f8c305..f2386bfd 100644
--- a/eval.c
+++ b/eval.c
@@ -4056,6 +4056,7 @@ void eval_init(void)
reg_op(macrolet_s, op_error);
reg_op(symacrolet_s, op_error);
+ reg_op(macro_time_s, op_error);
reg_op(var_s, op_meta_error);
reg_op(expr_s, op_meta_error);
reg_op(quote_s, op_quote);