From f93b24ace00a1800dd9540fa5268ce1c3bb6e61d Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 6 Aug 2015 22:05:14 -0700 Subject: * txr.c (txr_main): Bugfix: debugger long option nonfunctional. --- ChangeLog | 4 ++++ txr.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2bac16d4..8caefa5b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-08-06 Kaz Kylheku + + * txr.c (txr_main): Bugfix: debugger long option nonfunctional. + 2015-08-06 Kaz Kylheku Better diagnosis for loose @ forms. diff --git a/txr.c b/txr.c index 79ae888e..e784c224 100644 --- a/txr.c +++ b/txr.c @@ -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; -- cgit v1.2.3