diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-11-08 21:00:34 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-11-08 21:00:34 -0800 |
commit | 9ad8bad3e65de0181fe4662ec5687738ae49087c (patch) | |
tree | b10e7b0619ff94121783e402d47d5b897012cdbb /tests | |
parent | a2ea64e158ad9be884482747b45a90e27579f9f1 (diff) | |
download | txr-9ad8bad3e65de0181fe4662ec5687738ae49087c.tar.gz txr-9ad8bad3e65de0181fe4662ec5687738ae49087c.tar.bz2 txr-9ad8bad3e65de0181fe4662ec5687738ae49087c.zip |
Deprecated undocumented *user-package* etc.
* eval.c (eval_init): Do not register *user-package*,
or *system-package* or *keyword-package* variables
unless in compatibility mode. We don't document this
in the compatibility notes since the variables are not
documented.
* tests/009/json.txr: Change use of *keyword-package*
to keyword-package.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/009/json.txr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/009/json.txr b/tests/009/json.txr index e450b6bb..5c2732e8 100644 --- a/tests/009/json.txr +++ b/tests/009/json.txr @@ -53,7 +53,7 @@ @(define keyword (k))@\ @(local tok)@\ @(all)@(ws)@{tok /true|false|null/}@(trailer)@/[^A-Za-z0-9_]/@(end)@(ws)@\ - @(bind k @(intern tok *keyword-package*))@\ + @(bind k @(intern tok keyword-package))@\ @(end) @; @; Recognize an object: a collection of string/value pairs, |