summaryrefslogtreecommitdiffstats
path: root/autoload.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-02-23 07:35:36 -0800
committerKaz Kylheku <kaz@kylheku.com>2022-02-23 07:35:36 -0800
commitbf2fbbc765012a3eafa8ef235ab568bde942fdd8 (patch)
tree3824f435eaf66fb102f4b0d06d7df274d97dc768 /autoload.c
parent5e72e73394c005dc816b10cdcb5930499e39ad7b (diff)
downloadtxr-bf2fbbc765012a3eafa8ef235ab568bde942fdd8.tar.gz
txr-bf2fbbc765012a3eafa8ef235ab568bde942fdd8.tar.bz2
txr-bf2fbbc765012a3eafa8ef235ab568bde942fdd8.zip
New list-builder method: oust.
* autoload.c (build_set_entries): Add oust symbol. * stdlib/build.tl (list-builder postinit): Call the self argument self instead of bc, for consistency with other methods. (list-builder oust): New method. (list-builder-flets): Add local function oust. * tests/012/seq.tl: New tests. * txr.1: Documented. * stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'autoload.c')
-rw-r--r--autoload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload.c b/autoload.c
index bfe53a51..f2ecfb11 100644
--- a/autoload.c
+++ b/autoload.c
@@ -373,7 +373,7 @@ static val build_set_entries(val fun)
val name_noload[] = {
lit("head"), lit("tail"), lit("add"), lit("add*"), lit("pend"),
lit("pend*"), lit("ncon"), lit("ncon*"), lit("get"),
- lit("del"), lit("del*"),
+ lit("del"), lit("del*"), lit("oust"),
nil
};
autoload_set(al_struct, sname, fun);