diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-06-17 23:16:22 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-06-17 23:16:22 -0700 |
commit | e545f014c3e3336c929e0981948cc8f62423be7e (patch) | |
tree | 2a36f8452dd2ab3228d0c27121fee914fed0f0b1 /lisplib.c | |
parent | 60d79d3d94445b9b27c1b394499995847e889d64 (diff) | |
download | txr-e545f014c3e3336c929e0981948cc8f62423be7e.tar.gz txr-e545f014c3e3336c929e0981948cc8f62423be7e.tar.bz2 txr-e545f014c3e3336c929e0981948cc8f62423be7e.zip |
sub-list, sub-vec, sub-str: becoming accessors.
* lisplib.c (defset_instantiate): Add sub-list, sub-vec and
sub-str symbols as autoload triggers for defset.tl.
* share/txr/stdlib/defset.tl (sub-list, sub-vec, sub-str): New
syntactic places defined with defset.
* txr.1: sub-list, sub-vec and sub-str documented as
accessors.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -787,7 +787,7 @@ static val defset_instantiate(val set_fun) static val defset_set_entries(val dlt, val fun) { val name[] = { - lit("defset"), + lit("defset"), lit("sub-list"), lit("sub-vec"), lit("sub-str"), nil }; set_dlt_entries(dlt, name, fun); |