From d11b2dce1ea83bd396a275d42096631a7976ea29 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 26 Jan 2017 18:58:55 -0800 Subject: bugfix: forgotten autoload registrations. * lisplib.c (except_set_entries): Add catch* and handle*. --- lisplib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- cgit v1.2.3