diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-01-26 18:58:55 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-01-26 18:58:55 -0800 |
commit | daa2cee7be1e81b5f3628f3a406576e3e393153a (patch) | |
tree | 109f25cad12fad667cb2275f25ca624c839c7b51 | |
parent | ffdc4cd00e52faf1652abc210555e58feb0de50e (diff) | |
download | txr-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |