summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-01-26 18:58:55 -0800
committerKaz Kylheku <kaz@kylheku.com>2017-01-26 18:58:55 -0800
commitdaa2cee7be1e81b5f3628f3a406576e3e393153a (patch)
tree109f25cad12fad667cb2275f25ca624c839c7b51
parentffdc4cd00e52faf1652abc210555e58feb0de50e (diff)
downloadtxr-daa2cee7be1e81b5f3628f3a406576e3e393153a.tar.gz
txr-daa2cee7be1e81b5f3628f3a406576e3e393153a.tar.bz2
txr-daa2cee7be1e81b5f3628f3a406576e3e393153a.zip
bugfix: forgotten autoload registrations.
* lisplib.c (except_set_entries): Add catch* and handle*.
-rw-r--r--lisplib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisplib.c b/lisplib.c
index f73b7919..abdd8c1c 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -239,7 +239,8 @@ static val hash_instantiate(val set_fun)
static val except_set_entries(val dlt, val fun)
{
val name[] = {
- lit("catch"), lit("handle"), lit("ignwarn"), lit("macro-time-ignwarn"),
+ lit("catch"), lit("catch*"), lit("handle"), lit("handle*"),
+ lit("ignwarn"), lit("macro-time-ignwarn"),
nil
};
set_dlt_entries(dlt, name, fun);