summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-09-07 19:20:59 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-09-07 19:20:59 -0700
commitafdedf2289b5462b76d8a48e6c2d6f7c653f664d (patch)
tree487ca1e5892b4c0b87722aec35c69138bd90a149 /lisplib.c
parent957f80f26807582927fa580c705e9aa59327771d (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisplib.c b/lisplib.c
index 134264ad..b9b58f45 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -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);