diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-05-14 06:30:55 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-05-14 06:30:55 -0700 |
commit | 5db470c24ed43f84ab6915b8f6eea3e53a709f1f (patch) | |
tree | 8e2951924d72efabdb7f9ad8263cca752f62d1c9 /eval.c | |
parent | cdf79f2907cab5aa410ad47934f0374254386220 (diff) | |
download | txr-5db470c24ed43f84ab6915b8f6eea3e53a709f1f.tar.gz txr-5db470c24ed43f84ab6915b8f6eea3e53a709f1f.tar.bz2 txr-5db470c24ed43f84ab6915b8f6eea3e53a709f1f.zip |
sort: prudently make it subject to compat value
* eval.c (eval_init): If opt_compat is 237 or less, make sort
and shuffle destructive.
* share/txr/stdlib/getopts.tl (opthelp): Revert previous
change, restoring use of copy-list and use nsort instead of
sort, so the function is not affected by the 237 compatibility
being turned on.
* txr.1: Add compatibility notes.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6893,9 +6893,11 @@ void eval_init(void) reg_fun(intern(lit("improper-plist-to-alist"), user_package), func_n2(improper_plist_to_alist)); reg_fun(intern(lit("merge"), user_package), func_n4o(merge_wrap, 2)); reg_fun(intern(lit("nsort"), user_package), func_n3o(nsort, 1)); - reg_fun(intern(lit("sort"), user_package), func_n3o(sort, 1)); + reg_fun(intern(lit("sort"), user_package), + func_n3o(if3(opt_compat && opt_compat <= 237, nsort, sort), 1)); reg_fun(intern(lit("nshuffle"), user_package), func_n1(nshuffle)); - reg_fun(intern(lit("shuffle"), user_package), func_n1(shuffle)); + reg_fun(intern(lit("shuffle"), user_package), + func_n1(if3(opt_compat && opt_compat <= 237, nshuffle, shuffle))); reg_fun(intern(lit("find"), user_package), func_n4o(find, 2)); reg_fun(intern(lit("rfind"), user_package), func_n4o(rfind, 2)); reg_fun(intern(lit("find-if"), user_package), func_n3o(find_if, 2)); |