diff options
-rw-r--r-- | lisplib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)); } |