diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-10-30 17:57:11 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-10-30 17:57:11 -0700 |
commit | 50f2661a839a7f76856a5f13733b9a2a7843c135 (patch) | |
tree | 6d74f8629b7373a821a13b21fc165fbda905f033 /txr.c | |
parent | e7f11c6047409be9ac2b2a3a6eb4e5c58c0bc38b (diff) | |
download | txr-50f2661a839a7f76856a5f13733b9a2a7843c135.tar.gz txr-50f2661a839a7f76856a5f13733b9a2a7843c135.tar.bz2 txr-50f2661a839a7f76856a5f13733b9a2a7843c135.zip |
Hide deprecated, undocumented variables.
* arith.c (arith_init): Do not define *flo-dig*, *flo-max*,
*flo-min*, *flo-epsilon*, *pi* and *e* unless compatibility
with TXR 199 or earlier is requested.
* txr.c (txr_main): Likewise for *self-path*.
* txr.1: Compat note added.
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1022,7 +1022,8 @@ int txr_main(int argc, char **argv) opt_loglevel = match_loglevel; - reg_var(intern(lit("*self-path*"), user_package), spec_file_str); + if (opt_compat && opt_compat <= 199) + reg_var(intern(lit("*self-path*"), user_package), spec_file_str); if (parser.errors) { if (enter_repl) |