From eb657afe78925f7905bc3ca7093bb5e5f441bf4f Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 3 Aug 2015 09:48:48 -0700 Subject: * txr.c (txr_main): Bugfix: register *args-full*, the variable described in the documentation! We keep *full-args* for backward compatibility, as an obsolescent feature. --- ChangeLog | 6 ++++++ txr.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9a0ee3b7..f7e06f78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2015-08-03 Kaz Kylheku + + * txr.c (txr_main): Bugfix: register *args-full*, the variable + described in the documentation! We keep *full-args* for backward + compatibility, as an obsolescent feature. + 2015-08-03 Kaz Kylheku Introducing global lexicals: defvarl, defparml. diff --git a/txr.c b/txr.c index ffd8347a..23d2e046 100644 --- a/txr.c +++ b/txr.c @@ -389,6 +389,7 @@ int txr_main(int argc, char **argv) arg_tail = list_collect(arg_tail, string_utf8(*argv++)); reg_var(intern(lit("*full-args*"), user_package), arg_list); + reg_var(intern(lit("*args-full*"), user_package), arg_list); arg_list = cdr(arg_list); -- cgit v1.2.3