summaryrefslogtreecommitdiffstats
path: root/txr.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-10-30 17:57:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-10-30 17:57:11 -0700
commit50f2661a839a7f76856a5f13733b9a2a7843c135 (patch)
tree6d74f8629b7373a821a13b21fc165fbda905f033 /txr.c
parente7f11c6047409be9ac2b2a3a6eb4e5c58c0bc38b (diff)
downloadtxr-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/txr.c b/txr.c
index 1ef43001..9dda1cc6 100644
--- a/txr.c
+++ b/txr.c
@@ -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)