summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisplib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisplib.c b/lisplib.c
index 065436bf..e06b62e6 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -304,8 +304,8 @@ val lisplib_try_load(val sym)
{
val fun = gethash(dl_table, sym);
debug_state_t ds;
- return if3(fun, (ds = debug_set_state(opt_dbg_autoload ? 0 : -1,
+ return if2(fun, (ds = debug_set_state(opt_dbg_autoload ? 0 : -1,
opt_dbg_autoload),
funcall(fun),
- debug_restore_state(ds), t), nil);
+ debug_restore_state(ds), t));
}