diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | txr.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2015-08-06 Kaz Kylheku <kaz@kylheku.com> + * txr.c (txr_main): Bugfix: debugger long option nonfunctional. + +2015-08-06 Kaz Kylheku <kaz@kylheku.com> + Better diagnosis for loose @ forms. * eval.c (op_meta_error): New static function. @@ -495,7 +495,7 @@ int txr_main(int argc, char **argv) } else if (equal(opt, lit("lisp"))) { txr_lisp_p = t; continue; - } else if (equal(arg, lit("debugger"))) { + } else if (equal(opt, lit("debugger"))) { #if CONFIG_DEBUG_SUPPORT opt_debugger = 1; continue; |