diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-09-07 19:20:59 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-09-07 19:20:59 -0700 |
commit | afdedf2289b5462b76d8a48e6c2d6f7c653f664d (patch) | |
tree | 487ca1e5892b4c0b87722aec35c69138bd90a149 /lisplib.c | |
parent | 957f80f26807582927fa580c705e9aa59327771d (diff) | |
download | txr-afdedf2289b5462b76d8a48e6c2d6f7c653f664d.tar.gz txr-afdedf2289b5462b76d8a48e6c2d6f7c653f664d.tar.bz2 txr-afdedf2289b5462b76d8a48e6c2d6f7c653f664d.zip |
New rslot macro to suport upcoming awk macro.
This provides a way to create lexical macros denoting slots,
such that method are invoked when they are updated.
* lisplib.c (struct_set_entries): Add rslot to list of
auto-load symbols for struct.tl module.
* share/txr/stdlib/struct.tl (sys:rslotset): New function.
(rslot, rslot): New macro and place macro.
(sys:rslot): New place kind.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ static val struct_set_entries(val dlt, val fun) { val name[] = { lit("defstruct"), lit("qref"), lit("new"), lit("meth"), - lit("umeth"), lit("usl"), lit("defmeth"), nil + lit("umeth"), lit("usl"), lit("defmeth"), lit("rslot"), nil }; set_dlt_entries(dlt, name, fun); |