diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-10-30 21:50:32 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-10-30 21:50:32 -0700 |
commit | d38e9a82b7bdff9f990ff5c5650366890f16cfe8 (patch) | |
tree | 2a18ceca967bb988f6da6b1cc9b336dd25b40d22 /lisplib.c | |
parent | ff633e81a1efd932018daa1f887a77d263e4e315 (diff) | |
download | txr-d38e9a82b7bdff9f990ff5c5650366890f16cfe8.tar.gz txr-d38e9a82b7bdff9f990ff5c5650366890f16cfe8.tar.bz2 txr-d38e9a82b7bdff9f990ff5c5650366890f16cfe8.zip |
Define suspend operator.
* lisplib.c (yield_set_entries): Added "suspend" to
end of name.
* share/txr/stdlib/yield.tl (suspend): New macro.
* txr.1: Documented suspend. Replaced subtly incorect
shift/reset implementation example with suspend implementation.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -260,6 +260,7 @@ static val yield_set_entries(val dlt, val fun) { val name[] = { lit("obtain"), lit("obtain-block"), lit("yield-from"), lit("yield"), + lit("suspend"), nil }; set_dlt_entries(dlt, name, fun); |