summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-26 21:44:07 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-26 21:44:07 -0800
commit393ca39e3275ae3a0f07fd929c4282cd689df915 (patch)
treef8d754adcf96813b9a7cf6863d52601785011af8 /ChangeLog
parente501f90a9ea5682539658da371bd6231b616e561 (diff)
downloadtxr-393ca39e3275ae3a0f07fd929c4282cd689df915.tar.gz
txr-393ca39e3275ae3a0f07fd929c4282cd689df915.tar.bz2
txr-393ca39e3275ae3a0f07fd929c4282cd689df915.zip
Converting expander special case code transformations into
formal macros that are in the top_mb table, make their symbols fboundp and can be expanded with macroexpand. * eval.c (mefun_t): New typedef name. (expand_macro): If the expander is a cobj, then pull out the C function and call it, otherwise realize the interpreted macro as before. (me_gen, me_delay): New static functions, replace expand_gen and expand_delay. (expand_qquote): Renamed to me_quote. (expand_gen, expand_delay): Renamed to me_gen and me_delay, with an interface adjustment and moved. (expand_op): Renamed to me_op. (expand): Removed qquote, gen, delay, op, and do handling, since these operators are now macros. Removed the unnecessary expansion of with-saved-vars. (reg_op, reg_fun): Assert that the symbol is not nil, to catch initialization order issues. One just showed up: op_do was interned in match.c, which is initialized later. (reg_mac): New static function (eval_init): Intern do_s, because match.c hasn't done it yet at this point. Register me_gen, me_delay, me_op (twice) and me_qquote as intrinsic macros. * txr.1: Documented those operators as macros.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog28
1 files changed, 28 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2bfdb1e5..2af57217 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,33 @@
2014-02-26 Kaz Kylheku <kaz@kylheku.com>
+ Converting expander special case code transformations into
+ formal macros that are in the top_mb table, make their symbols
+ fboundp and can be expanded with macroexpand.
+
+ * eval.c (mefun_t): New typedef name.
+ (expand_macro): If the expander is a cobj, then pull out the C function
+ and call it, otherwise realize the interpreted macro as before.
+ (me_gen, me_delay): New static functions, replace expand_gen
+ and expand_delay.
+ (expand_qquote): Renamed to me_quote.
+ (expand_gen, expand_delay): Renamed to me_gen and me_delay,
+ with an interface adjustment and moved.
+ (expand_op): Renamed to me_op.
+ (expand): Removed qquote, gen, delay, op, and do handling, since
+ these operators are now macros.
+ Removed the unnecessary expansion of with-saved-vars.
+ (reg_op, reg_fun): Assert that the symbol is not nil, to catch
+ initialization order issues. One just showed up: op_do was
+ interned in match.c, which is initialized later.
+ (reg_mac): New static function
+ (eval_init): Intern do_s, because match.c hasn't done it yet
+ at this point. Register me_gen, me_delay, me_op (twice) and me_qquote
+ as intrinsic macros.
+
+ * txr.1: Documented those operators as macros.
+
+2014-02-26 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (reg_op): New static function.
(eval_init): Register operators with reg_op instead of direct sethash
calls.