summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--RELNOTES119
-rwxr-xr-xconfigure2
-rw-r--r--protsym.c444
-rw-r--r--stdlib/ver.tl2
-rw-r--r--tl.vim1194
-rw-r--r--txr.16
-rw-r--r--txr.vim1194
7 files changed, 1552 insertions, 1409 deletions
diff --git a/RELNOTES b/RELNOTES
index e3fcea20..4cd5186b 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,122 @@
+ TXR 300
+ 2025-05-31
+
+
+ Features
+
+ - Lib:
+ - Function iterp: test whether an object is an iterator.
+ - Iterable ranges with skip factor: 1..10..2, "aa".."dd"..4.
+ - Function progf: pass arguments to each function in a list,
+ returning value of last one.
+ - rand: bits of PRNG now used more efficiently:
+ - e.g. 32 successive (rand 2) calls use a single 32 bit
+ random word pulled from PRNG.
+ - Functions remove, keep: generalized remqual and keepqual.
+
+ - System Interface:
+ - glob* now supports string and integer ranges in brace expansion,
+ similarly to bash.
+ - Bash has only single-character ranges like {a..z}, whereas
+ we have {aa...zz} and such.
+ - also: new bexp function now exposes glob*'s brace expansion.
+
+ - Syntax:
+ - letrec macro.
+ - case, case*, ecase and ecase* synonym macros for casequal family,
+ for nicer readability.
+ - new mul and div macros to update a place by multiplying
+ or dividing its current value.
+
+ - Read syntax:
+ - quasiliteral substitutions can now specify format directive,
+ e.g. `@~3,2f:a` is like `@a`, but with ~3,2f format directive
+ applied.
+ - referencing dot allows white space on right side
+ - thus chains like obj.(meth arg).next ... can be split
+ across lines now.
+ - symbols can contain | character.
+
+ - Expansion:
+ - *expand-hook* feature.
+ - noexpand mechanism to annotate code as not requiring expansion.
+ - ifx macro provides infix.
+ - c-like operators for bit operations.
+ - squared functions: sin ** 2 x is sine squared x.
+ - novel precedence algorithm for intuitive parses.
+ - superfix relational comparisons 0 < x <= j < k.
+
+ - Pattern Matching
+ - New match-tuple-case macro
+ - @(require) operator now possible over argument tuples in
+ lambda-match.
+ - new macros in the "each" family:
+ - each-match-case, collect-match-cases, append-match-cases,
+ keep-match-cases, ... and others.
+
+ - Data Integrity
+ - HMAC: functions hmac-sha1, hmac-sha256 and hmac-md5.
+ - sha1-hash, sha256-hash, md5-hash now take stream argument.
+
+ - Data Compression
+ - str-compress and str-decompress functions directly compress
+ and decompress strings as UTF-8.
+
+ - listener:
+ - auto-infix mode.
+ - works with auto-compound mode.
+ - TXR can be used as infix calculator easily.
+
+ - buffers:
+ - now support bit operations
+ - functions buf-and, buf-ash, and others.
+ - also integrated into math lib: logand, ash, ... work on buffers.
+ - make-buf and buf-set-length can fill with multi-byte-patterns,
+ specified as a buffer or integer.
+ - improvement in buf representation, streamlining all code touching it.
+
+ - streams:
+ - better support for mixed character and byte push-back
+ in file/socket/pipe streams.
+ - string byte input streams support character input,
+ any mixture of unget-byte and unget-char operations,
+ and also fill-buf.
+ - much improved support for mixed parsing and
+ regular I/O operations.
+ - after iread or get-json, we can read the characters
+ which immediately follow, and then having consumed
+ what we need, do another iread or get-json.
+ - string output streams support truncate-stream and seek-stream.
+ - string input stream supports seek-stream.
+ - buffers streams similarly improved.
+
+ - debugging:
+ - new parameter macro :trace lets any function be statically traced.
+ - uses same mechanism as trace, but does not turn on/off
+ dynamically
+ - works with any function anywhere: flet, labels, lambdas.
+
+ - compiler:
+ - minor optimization improvements.
+ - diagnostic improvements (origin tracing).
+
+ - build:
+ - New utility "config-cache-hook.tl" available in tree for caching
+ build configurations, for faster git bisect and whatnot.
+
+ Bugs
+
+ - build:
+ - configure: bad gcc version check.
+ - Makefile: don't create .build_id for non-users of build_id.
+ - setenv: checks for error from C setenv and throw.
+ - buffers: conversion of zero-sized buffer to integer was asserting.
+ - listener: abort when Tab-completing sym with non-existent package.
+ - signals: SIGSYS considered synchronous signal like SIGFPE, etc.
+ - listener: fixed 2021 regression causing no Tab completion on keywords.
+
+
+
TXR 299
2025-02-16
diff --git a/configure b/configure
index 0b545d8f..51abcc58 100755
--- a/configure
+++ b/configure
@@ -630,7 +630,7 @@ chmod a+x reconfigure
#
-txr_ver=299
+txr_ver=300
#
# The all important banner.
diff --git a/protsym.c b/protsym.c
index 0c48c40e..7c31fc12 100644
--- a/protsym.c
+++ b/protsym.c
@@ -44,42 +44,43 @@ extern val be_uint16_s, be_uint32_s, be_uint64_s, bignum_s, bind_s;
extern val bit_s, bitset_s, blksize_k, blksize_s, block_s;
extern val block_star_s, blocks_k, blocks_s, bool_s, bstr_d_s;
extern val bstr_s, bstr_s_s, buf_d_s, buf_s, byte_oriented_k;
-extern val call_s, car_s, carray_s, case_error_s, caseq_s;
-extern val caseq_star_s, caseql_s, caseql_star_s, casequal_s, casequal_star_s;
-extern val cases_s, cat_s, catch_frame_s, catch_s, cbrt_s;
-extern val cdigit_k, cdr_s, ceil1_s, ceil_s, char_s;
-extern val chars_k, child_env_s, choose_s, chr_s, chset_s;
-extern val circref_s, clear_error_s, close_s, closure_s, cobj_s;
-extern val coll_s, collect_each_s, collect_each_star_s, collect_s, colon_k;
-extern val compile_only_s, compiler_let_s, compl_s, compound_s, cond_s;
-extern val cons_s, const_foldable_s, continue_k, continue_s, copy_s;
-extern val copysign_s, cos_s, cosh_s, counter_k, cptr_s;
-extern val cset_s, cspace_k, ctime_k, ctime_nsec_s, ctime_s;
-extern val cur_s, cword_char_k, data_s, day_s, decline_k;
-extern val defex_s, deffilter_s, define_s, defmacro_s, defparm_s;
-extern val defparml_s, defr_warning_s, defsymacro_s, defun_s, defvar_s;
-extern val defvarl_s, derived_s, dev_k, dev_s, digit_k;
-extern val dir_s, dirent_s, div_s, do_s, dohash_s;
-extern val double_s, downcase_k, drem_s, dst_s, dvbind_s;
-extern val dwim_s, each_op_s, each_s, each_star_s, elemtype_s;
-extern val elif_s, else_s, empty_s, enum_s, enumed_s;
-extern val env_k, env_s, eof_s, eol_s, eq_based_k;
-extern val eq_s, eql_based_k, eql_s, equal_based_k, equal_s;
-extern val erf_s, erfc_s, error_s, eval_error_s, eval_only_s;
-extern val evenp_s, exp10_s, exp2_s, exp_s, expm1_s;
-extern val expr_s, expt_s, exptmod_s, fail_s, fbind_s;
-extern val fd_k, fdim_s, ffi_call_desc_s, ffi_closure_s, ffi_type_s;
-extern val file_error_s, fill_buf_s, filter_k, filter_s, filters_s;
-extern val finally_s, finish_k, first_s, fixnum_s, flatten_s;
-extern val flet_s, float_s, floor1_s, floor_s, flush_s;
-extern val fmax_s, fmin_s, for_op_s, for_s, for_star_s;
-extern val force_s, forget_s, form_k, format_s, freeform_s;
-extern val from_current_k, from_end_k, from_list_s, from_start_k, frombase64_k;
-extern val frombase64url_k, fromhtml_k, frompercent_k, fromurl_k, fun_k;
-extern val fun_s, fuzz_s, gamma_s, gap_k, gather_s;
-extern val gc_prot_array_s, ge_s, gen_s, generate_s, gensym_counter_s;
-extern val get_byte_s, get_char_s, get_error_s, get_error_str_s, get_fd_s;
-extern val get_line_s, get_prop_s, gid_k, gid_s, gmtoff_s;
+extern val call_s, car_s, carray_s, case_error_s, case_s;
+extern val case_star_s, caseq_s, caseq_star_s, caseql_s, caseql_star_s;
+extern val casequal_s, casequal_star_s, cases_s, cat_s, catch_frame_s;
+extern val catch_s, cbrt_s, cdigit_k, cdr_s, ceil1_s;
+extern val ceil_s, char_s, chars_k, child_env_s, choose_s;
+extern val chr_s, chset_s, circref_s, clear_error_s, close_s;
+extern val closure_s, cobj_s, coll_s, collect_each_s, collect_each_star_s;
+extern val collect_s, colon_k, compile_only_s, compiler_let_s, compl_s;
+extern val compound_s, cond_s, cons_s, const_foldable_s, continue_k;
+extern val continue_s, copy_s, copysign_s, cos_s, cosh_s;
+extern val counter_k, cptr_s, cset_s, cspace_k, ctime_k;
+extern val ctime_nsec_s, ctime_s, cur_s, cword_char_k, data_s;
+extern val day_s, decline_k, defex_s, deffilter_s, define_s;
+extern val defmacro_s, defparm_s, defparml_s, defr_warning_s, defsymacro_s;
+extern val defun_s, defvar_s, defvarl_s, derived_s, dev_k;
+extern val dev_s, digit_k, dir_s, dirent_s, div_s;
+extern val do_s, dohash_s, double_s, downcase_k, drem_s;
+extern val dst_s, dvbind_s, dwim_s, each_op_s, each_s;
+extern val each_star_s, elemtype_s, elif_s, else_s, empty_s;
+extern val enum_s, enumed_s, env_k, env_s, eof_s;
+extern val eol_s, eq_based_k, eq_s, eql_based_k, eql_s;
+extern val equal_based_k, equal_s, erf_s, erfc_s, error_s;
+extern val eval_error_s, eval_only_s, evenp_s, exp10_s, exp2_s;
+extern val exp_s, expand_hook_s, expander_let_s, expm1_s, expr_s;
+extern val expt_s, exptmod_s, fail_s, fbind_s, fd_k;
+extern val fdim_s, ffi_call_desc_s, ffi_closure_s, ffi_type_s, file_error_s;
+extern val fill_buf_s, filter_k, filter_s, filters_s, finally_s;
+extern val finish_k, first_s, fixnum_s, flatten_s, flet_s;
+extern val float_s, floor1_s, floor_s, flush_s, fmax_s;
+extern val fmin_s, for_op_s, for_s, for_star_s, force_s;
+extern val forget_s, form_k, format_s, freeform_s, from_current_k;
+extern val from_end_k, from_list_s, from_start_k, frombase64_k, frombase64url_k;
+extern val fromhtml_k, frompercent_k, fromurl_k, fun_k, fun_s;
+extern val fuzz_s, gamma_s, gap_k, gather_s, gc_prot_array_s;
+extern val ge_s, gen_s, generate_s, gensym_counter_s, get_byte_s;
+extern val get_char_s, get_error_s, get_error_str_s, get_fd_s, get_line_s;
+extern val get_prop_s, get_string_s, gid_k, gid_s, gmtoff_s;
extern val greedy_k, gt_s, gun_s, handler_bind_s, hash_construct_s;
extern val hash_iter_s, hash_lit_s, hash_s, hash_seed_s, hextoint_k;
extern val hour_s, hypot_s, iapply_s, identity_s, if_s;
@@ -95,80 +96,81 @@ extern val le_int16_s, le_int32_s, le_int64_s, le_s, le_uint16_s;
extern val le_uint32_s, le_uint64_s, length_lt_s, length_s, less_s;
extern val let_s, let_star_s, lfilt_k, lgamma_s, line_s;
extern val lines_k, list_k, list_s, list_star_s, listener_auto_compound_s;
-extern val listener_greedy_eval_s, listener_hist_len_s, listener_multi_line_p_s, listener_pprint_s, listener_sel_inclusive_p_s;
-extern val lists_k, lit_s, load_args_s, load_hooks_s, load_path_s;
-extern val load_recursive_s, load_s, load_search_dirs_s, load_time_lit_s, load_time_s;
-extern val local_s, log10_s, log1p_s, log2_s, log_s;
-extern val logand_s, logb_s, logcount_s, logior_s, lognot1_s;
-extern val lognot_s, logtrunc_s, logxor_s, long_s, longest_k;
-extern val lstr_s, lt_s, mac_env_param_bind_s, mac_param_bind_s, macro_k;
-extern val macro_s, macro_time_s, macrolet_s, make_struct_lit_s, mandatory_k;
-extern val max_s, maxgap_k, maxtimes_k, maybe_s, mdo_s;
-extern val memq_s, memql_s, memqual_s, merge_s, meth_s;
-extern val min_s, mingap_k, mintimes_k, minus_s, minusp_s;
-extern val mod_s, mode_k, mode_s, modlast_s, month_s;
-extern val mtime_k, mtime_nsec_s, mtime_s, mul_s, name_k;
-extern val name_s, named_k, nearbyint_s, neg_s, next_s;
-extern val next_spec_k, nextafter_s, nlink_k, nlink_s, noclose_k;
-extern val none_s, nongreedy_s, not_s, nothrow_k, noval_s;
-extern val null_s, nullify_s, number_s, numeq_s, numeric_error_s;
-extern val oddp_s, oneplus_s, op_s, optional_s, or_s;
-extern val output_s, pack_s, package_alist_s, package_s, panic_s;
-extern val parser_s, path_exists_s, path_not_found_s, path_permission_s, path_s;
-extern val pct_fun_s, pkg_s, plus_s, plusp_s, postinit_k;
-extern val pprint_flo_format_s, print_base_s, print_circle_s, print_flo_digits_s, print_flo_format_s;
-extern val print_flo_precision_s, print_json_format_s, print_json_type_s, print_s, process_error_s;
-extern val prof_s, prog1_s, prog2_s, progn_s, progv_s;
-extern val promise_forced_s, promise_inprogress_s, promise_s, ptr_in_d_s, ptr_in_s;
-extern val ptr_out_d_s, ptr_out_s, ptr_out_s_s, ptr_s, push_s;
-extern val put_buf_s, put_byte_s, put_char_s, put_string_s, qquote_s;
-extern val qref_s, quant_state_s, quasi_s, quasilist_s, query_error_s;
-extern val quote_s, r_atan2_s, r_ceil_s, r_copysign_s, r_drem_s;
-extern val r_expt_s, r_fdim_s, r_floor_s, r_fmax_s, r_fmin_s;
-extern val r_hypot_s, r_jn_s, r_ldexp_s, r_lognot_s, r_logtrunc_s;
-extern val r_mod_s, r_nextafter_s, r_remainder_s, r_round_s, r_scalb_s;
-extern val r_scalbln_s, r_trunc_s, r_yn_s, random_state_s, random_state_var_s;
-extern val random_warmup_s, range_error_s, range_s, rcons_s, rdev_k;
-extern val rdev_s, read_bad_json_s, read_json_int_s, read_unknown_structs_s, real_time_k;
-extern val rebind_s, rec_source_loc_s, recip_s, reflect_k, regex_s;
-extern val remainder_s, rep_s, repeat_s, repeat_spec_k, require_s;
-extern val resolve_k, rest_s, restart_s, return_from_s, return_s;
-extern val rfilt_k, rint_s, rlim_s, round1_s, round_s;
-extern val rplaca_s, rplacd_s, sbit_s, scalb_s, scalbln_s;
-extern val sec_s, seek_s, self_path_s, seq_iter_s, sequence_s;
-extern val set_prop_s, set_s, setq_s, setqf_s, short_s;
-extern val shortest_k, sign_extend_s, significand_s, signum_s, sin_s;
-extern val single_s, sinh_s, size_k, size_s, skip_s;
-extern val slot_s, slotset_s, some_s, space_k, special_s;
-extern val splice_s, sqrt_s, square_s, stack_overflow_s, standard_k;
-extern val stat_s, static_slot_s, static_slot_set_s, stddebug_s, stderr_s;
-extern val stdin_s, stdio_stream_s, stdnull_s, stdout_s, str_d_s;
-extern val str_s, str_s_s, stream_s, string_k, string_s;
-extern val struct_lit_s, struct_s, struct_type_s, switch_s, sym_s;
-extern val symacro_k, symacrolet_s, syntax_error_s, sys_abscond_from_s, sys_apply_s;
-extern val sys_blk_s, sys_catch_s, sys_l1_setq_s, sys_l1_val_s, sys_lisp1_setq_s;
-extern val sys_lisp1_value_s, sys_mark_special_s, sys_qquote_s, sys_splice_s, sys_unquote_s;
-extern val system_error_s, system_package_s, tan_s, tanh_s, text_s;
-extern val tgamma_s, throw_s, time_local_s, time_parse_s, time_s;
-extern val time_string_s, time_utc_s, timeout_error_s, times_k, tlist_k;
-extern val tnode_s, tobase64_k, tobase64url_k, tofloat_k, tofloat_s;
-extern val tohtml_k, tohtml_star_k, toint_k, toint_s, tonumber_k;
-extern val topercent_k, tourl_k, trailer_s, tree_bind_s, tree_case_s;
-extern val tree_construct_s, tree_fun_whitelist_s, tree_iter_s, tree_lit_s, tree_s;
-extern val trunc1_s, trunc_s, truncate_s, try_s, type_error_s;
-extern val ubit_s, uchar_s, uid_k, uid_s, uint16_s;
-extern val uint32_s, uint64_s, uint8_s, uint_s, ulong_s;
-extern val unbound_s, unget_byte_s, unget_char_s, union_s, unique_s;
-extern val unquote_s, until_s, until_star_s, upcase_k, uref_s;
-extern val user_package_s, userdata_k, ushort_s, usr_var_s, uw_protect_s;
-extern val val_s, var_k, var_s, vars_k, vec_list_s;
-extern val vec_s, vecref_s, vector_lit_s, vm_closure_s, vm_desc_s;
-extern val void_s, warning_s, wchar_s, wday_s, weak_and_k;
-extern val weak_keys_k, weak_or_k, weak_vals_k, when_s, while_s;
-extern val while_star_s, whole_k, width_s, wild_s, word_char_k;
-extern val wrap_k, wstr_d_s, wstr_s, wstr_s_s, y0_s;
-extern val y1_s, yday_s, year_s, yn_s, zarray_s;
-extern val zchar_s, zerop_s, zeroplus_s, zone_s;
+extern val listener_auto_infix_s, listener_greedy_eval_s, listener_hist_len_s, listener_multi_line_p_s, listener_pprint_s;
+extern val listener_sel_inclusive_p_s, lists_k, lit_s, load_args_s, load_hooks_s;
+extern val load_path_s, load_recursive_s, load_s, load_search_dirs_s, load_time_lit_s;
+extern val load_time_s, local_s, log10_s, log1p_s, log2_s;
+extern val log_s, logand_s, logb_s, logcount_s, logior_s;
+extern val lognot1_s, lognot_s, logtrunc_s, logxor_s, long_s;
+extern val longest_k, lstr_s, lt_s, mac_env_param_bind_s, mac_param_bind_s;
+extern val macro_k, macro_s, macro_time_s, macrolet_s, make_struct_lit_s;
+extern val mandatory_k, max_s, maxgap_k, maxtimes_k, maybe_s;
+extern val mdo_s, memq_s, memql_s, memqual_s, merge_s;
+extern val meth_s, min_s, mingap_k, mintimes_k, minus_s;
+extern val minusp_s, mod_s, mode_k, mode_s, modlast_s;
+extern val month_s, mtime_k, mtime_nsec_s, mtime_s, mul_s;
+extern val name_k, name_s, named_k, nearbyint_s, neg_s;
+extern val next_s, next_spec_k, nextafter_s, nlink_k, nlink_s;
+extern val noclose_k, noexpand_s, none_s, nongreedy_s, not_s;
+extern val nothrow_k, noval_s, null_s, nullify_s, number_s;
+extern val numeq_s, numeric_error_s, oddp_s, oneplus_s, op_s;
+extern val optional_s, or_s, output_s, pack_s, package_alist_s;
+extern val package_s, panic_s, parser_s, path_exists_s, path_not_found_s;
+extern val path_permission_s, path_s, pct_fun_s, pkg_s, plus_s;
+extern val plusp_s, postinit_k, pprint_flo_format_s, print_base_s, print_circle_s;
+extern val print_flo_digits_s, print_flo_format_s, print_flo_precision_s, print_json_format_s, print_json_type_s;
+extern val print_s, process_error_s, prof_s, prog1_s, prog2_s;
+extern val progn_s, progv_s, promise_forced_s, promise_inprogress_s, promise_s;
+extern val ptr_in_d_s, ptr_in_s, ptr_out_d_s, ptr_out_s, ptr_out_s_s;
+extern val ptr_s, push_s, put_buf_s, put_byte_s, put_char_s;
+extern val put_string_s, qquote_s, qref_s, quant_state_s, quasi_s;
+extern val quasilist_s, query_error_s, quote_s, r_atan2_s, r_ceil_s;
+extern val r_copysign_s, r_drem_s, r_expt_s, r_fdim_s, r_floor_s;
+extern val r_fmax_s, r_fmin_s, r_hypot_s, r_jn_s, r_ldexp_s;
+extern val r_lognot_s, r_logtrunc_s, r_mod_s, r_nextafter_s, r_remainder_s;
+extern val r_round_s, r_scalb_s, r_scalbln_s, r_trunc_s, r_yn_s;
+extern val random_state_s, random_state_var_s, random_warmup_s, range_error_s, range_s;
+extern val rcons_s, rdev_k, rdev_s, read_bad_json_s, read_json_int_s;
+extern val read_unknown_structs_s, real_time_k, rebind_s, rec_source_loc_s, recip_s;
+extern val reflect_k, regex_s, remainder_s, rep_s, repeat_s;
+extern val repeat_spec_k, require_s, resolve_k, rest_s, restart_s;
+extern val return_from_s, return_s, rfilt_k, rint_s, rlim_s;
+extern val round1_s, round_s, rplaca_s, rplacd_s, sbit_s;
+extern val scalb_s, scalbln_s, sec_s, seek_s, self_path_s;
+extern val seq_iter_s, sequence_s, set_prop_s, set_s, setq_s;
+extern val setqf_s, short_s, shortest_k, sign_extend_s, significand_s;
+extern val signum_s, sin_s, single_s, sinh_s, size_k;
+extern val size_s, skip_s, slot_s, slotset_s, some_s;
+extern val space_k, special_s, splice_s, sqrt_s, square_s;
+extern val stack_overflow_s, standard_k, stat_s, static_slot_s, static_slot_set_s;
+extern val stddebug_s, stderr_s, stdin_s, stdio_stream_s, stdnull_s;
+extern val stdout_s, str_d_s, str_s, str_s_s, stream_s;
+extern val string_k, string_s, struct_lit_s, struct_s, struct_type_s;
+extern val switch_s, sym_s, symacro_k, symacrolet_s, syntax_error_s;
+extern val sys_abscond_from_s, sys_apply_s, sys_blk_s, sys_catch_s, sys_l1_setq_s;
+extern val sys_l1_val_s, sys_lisp1_setq_s, sys_lisp1_value_s, sys_mark_special_s, sys_qquote_s;
+extern val sys_splice_s, sys_unquote_s, system_error_s, system_package_s, tan_s;
+extern val tanh_s, text_s, tgamma_s, throw_s, time_local_s;
+extern val time_parse_s, time_s, time_string_s, time_utc_s, timeout_error_s;
+extern val times_k, tlist_k, tnode_s, tobase64_k, tobase64url_k;
+extern val tofloat_k, tofloat_s, tohtml_k, tohtml_star_k, toint_k;
+extern val toint_s, tonumber_k, topercent_k, tourl_k, trailer_s;
+extern val tree_bind_s, tree_case_s, tree_construct_s, tree_fun_whitelist_s, tree_iter_s;
+extern val tree_lit_s, tree_s, trunc1_s, trunc_s, truncate_s;
+extern val try_s, type_error_s, ubit_s, uchar_s, uid_k;
+extern val uid_s, uint16_s, uint32_s, uint64_s, uint8_s;
+extern val uint_s, ulong_s, unbound_s, unget_byte_s, unget_char_s;
+extern val union_s, unique_s, unquote_s, until_s, until_star_s;
+extern val upcase_k, uref_s, user_package_s, userdata_k, ushort_s;
+extern val usr_var_s, uw_protect_s, val_s, var_k, var_s;
+extern val vars_k, vec_list_s, vec_s, vecref_s, vector_lit_s;
+extern val vm_closure_s, vm_desc_s, void_s, warning_s, wchar_s;
+extern val wday_s, weak_and_k, weak_keys_k, weak_or_k, weak_vals_k;
+extern val when_s, while_s, while_star_s, whole_k, width_s;
+extern val wild_s, word_char_k, wrap_k, wstr_d_s, wstr_s;
+extern val wstr_s_s, y0_s, y1_s, yday_s, year_s;
+extern val yn_s, zarray_s, zchar_s, zerop_s, zeroplus_s;
+extern val zone_s;
#if (HAVE_PWUID || HAVE_GRGID)
extern val passwd_s;
@@ -219,42 +221,43 @@ val *protected_sym[] = {
&bit_s, &bitset_s, &blksize_k, &blksize_s, &block_s,
&block_star_s, &blocks_k, &blocks_s, &bool_s, &bstr_d_s,
&bstr_s, &bstr_s_s, &buf_d_s, &buf_s, &byte_oriented_k,
- &call_s, &car_s, &carray_s, &case_error_s, &caseq_s,
- &caseq_star_s, &caseql_s, &caseql_star_s, &casequal_s, &casequal_star_s,
- &cases_s, &cat_s, &catch_frame_s, &catch_s, &cbrt_s,
- &cdigit_k, &cdr_s, &ceil1_s, &ceil_s, &char_s,
- &chars_k, &child_env_s, &choose_s, &chr_s, &chset_s,
- &circref_s, &clear_error_s, &close_s, &closure_s, &cobj_s,
- &coll_s, &collect_each_s, &collect_each_star_s, &collect_s, &colon_k,
- &compile_only_s, &compiler_let_s, &compl_s, &compound_s, &cond_s,
- &cons_s, &const_foldable_s, &continue_k, &continue_s, &copy_s,
- &copysign_s, &cos_s, &cosh_s, &counter_k, &cptr_s,
- &cset_s, &cspace_k, &ctime_k, &ctime_nsec_s, &ctime_s,
- &cur_s, &cword_char_k, &data_s, &day_s, &decline_k,
- &defex_s, &deffilter_s, &define_s, &defmacro_s, &defparm_s,
- &defparml_s, &defr_warning_s, &defsymacro_s, &defun_s, &defvar_s,
- &defvarl_s, &derived_s, &dev_k, &dev_s, &digit_k,
- &dir_s, &dirent_s, &div_s, &do_s, &dohash_s,
- &double_s, &downcase_k, &drem_s, &dst_s, &dvbind_s,
- &dwim_s, &each_op_s, &each_s, &each_star_s, &elemtype_s,
- &elif_s, &else_s, &empty_s, &enum_s, &enumed_s,
- &env_k, &env_s, &eof_s, &eol_s, &eq_based_k,
- &eq_s, &eql_based_k, &eql_s, &equal_based_k, &equal_s,
- &erf_s, &erfc_s, &error_s, &eval_error_s, &eval_only_s,
- &evenp_s, &exp10_s, &exp2_s, &exp_s, &expm1_s,
- &expr_s, &expt_s, &exptmod_s, &fail_s, &fbind_s,
- &fd_k, &fdim_s, &ffi_call_desc_s, &ffi_closure_s, &ffi_type_s,
- &file_error_s, &fill_buf_s, &filter_k, &filter_s, &filters_s,
- &finally_s, &finish_k, &first_s, &fixnum_s, &flatten_s,
- &flet_s, &float_s, &floor1_s, &floor_s, &flush_s,
- &fmax_s, &fmin_s, &for_op_s, &for_s, &for_star_s,
- &force_s, &forget_s, &form_k, &format_s, &freeform_s,
- &from_current_k, &from_end_k, &from_list_s, &from_start_k, &frombase64_k,
- &frombase64url_k, &fromhtml_k, &frompercent_k, &fromurl_k, &fun_k,
- &fun_s, &fuzz_s, &gamma_s, &gap_k, &gather_s,
- &gc_prot_array_s, &ge_s, &gen_s, &generate_s, &gensym_counter_s,
- &get_byte_s, &get_char_s, &get_error_s, &get_error_str_s, &get_fd_s,
- &get_line_s, &get_prop_s, &gid_k, &gid_s, &gmtoff_s,
+ &call_s, &car_s, &carray_s, &case_error_s, &case_s,
+ &case_star_s, &caseq_s, &caseq_star_s, &caseql_s, &caseql_star_s,
+ &casequal_s, &casequal_star_s, &cases_s, &cat_s, &catch_frame_s,
+ &catch_s, &cbrt_s, &cdigit_k, &cdr_s, &ceil1_s,
+ &ceil_s, &char_s, &chars_k, &child_env_s, &choose_s,
+ &chr_s, &chset_s, &circref_s, &clear_error_s, &close_s,
+ &closure_s, &cobj_s, &coll_s, &collect_each_s, &collect_each_star_s,
+ &collect_s, &colon_k, &compile_only_s, &compiler_let_s, &compl_s,
+ &compound_s, &cond_s, &cons_s, &const_foldable_s, &continue_k,
+ &continue_s, &copy_s, &copysign_s, &cos_s, &cosh_s,
+ &counter_k, &cptr_s, &cset_s, &cspace_k, &ctime_k,
+ &ctime_nsec_s, &ctime_s, &cur_s, &cword_char_k, &data_s,
+ &day_s, &decline_k, &defex_s, &deffilter_s, &define_s,
+ &defmacro_s, &defparm_s, &defparml_s, &defr_warning_s, &defsymacro_s,
+ &defun_s, &defvar_s, &defvarl_s, &derived_s, &dev_k,
+ &dev_s, &digit_k, &dir_s, &dirent_s, &div_s,
+ &do_s, &dohash_s, &double_s, &downcase_k, &drem_s,
+ &dst_s, &dvbind_s, &dwim_s, &each_op_s, &each_s,
+ &each_star_s, &elemtype_s, &elif_s, &else_s, &empty_s,
+ &enum_s, &enumed_s, &env_k, &env_s, &eof_s,
+ &eol_s, &eq_based_k, &eq_s, &eql_based_k, &eql_s,
+ &equal_based_k, &equal_s, &erf_s, &erfc_s, &error_s,
+ &eval_error_s, &eval_only_s, &evenp_s, &exp10_s, &exp2_s,
+ &exp_s, &expand_hook_s, &expander_let_s, &expm1_s, &expr_s,
+ &expt_s, &exptmod_s, &fail_s, &fbind_s, &fd_k,
+ &fdim_s, &ffi_call_desc_s, &ffi_closure_s, &ffi_type_s, &file_error_s,
+ &fill_buf_s, &filter_k, &filter_s, &filters_s, &finally_s,
+ &finish_k, &first_s, &fixnum_s, &flatten_s, &flet_s,
+ &float_s, &floor1_s, &floor_s, &flush_s, &fmax_s,
+ &fmin_s, &for_op_s, &for_s, &for_star_s, &force_s,
+ &forget_s, &form_k, &format_s, &freeform_s, &from_current_k,
+ &from_end_k, &from_list_s, &from_start_k, &frombase64_k, &frombase64url_k,
+ &fromhtml_k, &frompercent_k, &fromurl_k, &fun_k, &fun_s,
+ &fuzz_s, &gamma_s, &gap_k, &gather_s, &gc_prot_array_s,
+ &ge_s, &gen_s, &generate_s, &gensym_counter_s, &get_byte_s,
+ &get_char_s, &get_error_s, &get_error_str_s, &get_fd_s, &get_line_s,
+ &get_prop_s, &get_string_s, &gid_k, &gid_s, &gmtoff_s,
&greedy_k, &gt_s, &gun_s, &handler_bind_s, &hash_construct_s,
&hash_iter_s, &hash_lit_s, &hash_s, &hash_seed_s, &hextoint_k,
&hour_s, &hypot_s, &iapply_s, &identity_s, &if_s,
@@ -270,80 +273,81 @@ val *protected_sym[] = {
&le_uint32_s, &le_uint64_s, &length_lt_s, &length_s, &less_s,
&let_s, &let_star_s, &lfilt_k, &lgamma_s, &line_s,
&lines_k, &list_k, &list_s, &list_star_s, &listener_auto_compound_s,
- &listener_greedy_eval_s, &listener_hist_len_s, &listener_multi_line_p_s, &listener_pprint_s, &listener_sel_inclusive_p_s,
- &lists_k, &lit_s, &load_args_s, &load_hooks_s, &load_path_s,
- &load_recursive_s, &load_s, &load_search_dirs_s, &load_time_lit_s, &load_time_s,
- &local_s, &log10_s, &log1p_s, &log2_s, &log_s,
- &logand_s, &logb_s, &logcount_s, &logior_s, &lognot1_s,
- &lognot_s, &logtrunc_s, &logxor_s, &long_s, &longest_k,
- &lstr_s, &lt_s, &mac_env_param_bind_s, &mac_param_bind_s, &macro_k,
- &macro_s, &macro_time_s, &macrolet_s, &make_struct_lit_s, &mandatory_k,
- &max_s, &maxgap_k, &maxtimes_k, &maybe_s, &mdo_s,
- &memq_s, &memql_s, &memqual_s, &merge_s, &meth_s,
- &min_s, &mingap_k, &mintimes_k, &minus_s, &minusp_s,
- &mod_s, &mode_k, &mode_s, &modlast_s, &month_s,
- &mtime_k, &mtime_nsec_s, &mtime_s, &mul_s, &name_k,
- &name_s, &named_k, &nearbyint_s, &neg_s, &next_s,
- &next_spec_k, &nextafter_s, &nlink_k, &nlink_s, &noclose_k,
- &none_s, &nongreedy_s, &not_s, &nothrow_k, &noval_s,
- &null_s, &nullify_s, &number_s, &numeq_s, &numeric_error_s,
- &oddp_s, &oneplus_s, &op_s, &optional_s, &or_s,
- &output_s, &pack_s, &package_alist_s, &package_s, &panic_s,
- &parser_s, &path_exists_s, &path_not_found_s, &path_permission_s, &path_s,
- &pct_fun_s, &pkg_s, &plus_s, &plusp_s, &postinit_k,
- &pprint_flo_format_s, &print_base_s, &print_circle_s, &print_flo_digits_s, &print_flo_format_s,
- &print_flo_precision_s, &print_json_format_s, &print_json_type_s, &print_s, &process_error_s,
- &prof_s, &prog1_s, &prog2_s, &progn_s, &progv_s,
- &promise_forced_s, &promise_inprogress_s, &promise_s, &ptr_in_d_s, &ptr_in_s,
- &ptr_out_d_s, &ptr_out_s, &ptr_out_s_s, &ptr_s, &push_s,
- &put_buf_s, &put_byte_s, &put_char_s, &put_string_s, &qquote_s,
- &qref_s, &quant_state_s, &quasi_s, &quasilist_s, &query_error_s,
- &quote_s, &r_atan2_s, &r_ceil_s, &r_copysign_s, &r_drem_s,
- &r_expt_s, &r_fdim_s, &r_floor_s, &r_fmax_s, &r_fmin_s,
- &r_hypot_s, &r_jn_s, &r_ldexp_s, &r_lognot_s, &r_logtrunc_s,
- &r_mod_s, &r_nextafter_s, &r_remainder_s, &r_round_s, &r_scalb_s,
- &r_scalbln_s, &r_trunc_s, &r_yn_s, &random_state_s, &random_state_var_s,
- &random_warmup_s, &range_error_s, &range_s, &rcons_s, &rdev_k,
- &rdev_s, &read_bad_json_s, &read_json_int_s, &read_unknown_structs_s, &real_time_k,
- &rebind_s, &rec_source_loc_s, &recip_s, &reflect_k, &regex_s,
- &remainder_s, &rep_s, &repeat_s, &repeat_spec_k, &require_s,
- &resolve_k, &rest_s, &restart_s, &return_from_s, &return_s,
- &rfilt_k, &rint_s, &rlim_s, &round1_s, &round_s,
- &rplaca_s, &rplacd_s, &sbit_s, &scalb_s, &scalbln_s,
- &sec_s, &seek_s, &self_path_s, &seq_iter_s, &sequence_s,
- &set_prop_s, &set_s, &setq_s, &setqf_s, &short_s,
- &shortest_k, &sign_extend_s, &significand_s, &signum_s, &sin_s,
- &single_s, &sinh_s, &size_k, &size_s, &skip_s,
- &slot_s, &slotset_s, &some_s, &space_k, &special_s,
- &splice_s, &sqrt_s, &square_s, &stack_overflow_s, &standard_k,
- &stat_s, &static_slot_s, &static_slot_set_s, &stddebug_s, &stderr_s,
- &stdin_s, &stdio_stream_s, &stdnull_s, &stdout_s, &str_d_s,
- &str_s, &str_s_s, &stream_s, &string_k, &string_s,
- &struct_lit_s, &struct_s, &struct_type_s, &switch_s, &sym_s,
- &symacro_k, &symacrolet_s, &syntax_error_s, &sys_abscond_from_s, &sys_apply_s,
- &sys_blk_s, &sys_catch_s, &sys_l1_setq_s, &sys_l1_val_s, &sys_lisp1_setq_s,
- &sys_lisp1_value_s, &sys_mark_special_s, &sys_qquote_s, &sys_splice_s, &sys_unquote_s,
- &system_error_s, &system_package_s, &tan_s, &tanh_s, &text_s,
- &tgamma_s, &throw_s, &time_local_s, &time_parse_s, &time_s,
- &time_string_s, &time_utc_s, &timeout_error_s, &times_k, &tlist_k,
- &tnode_s, &tobase64_k, &tobase64url_k, &tofloat_k, &tofloat_s,
- &tohtml_k, &tohtml_star_k, &toint_k, &toint_s, &tonumber_k,
- &topercent_k, &tourl_k, &trailer_s, &tree_bind_s, &tree_case_s,
- &tree_construct_s, &tree_fun_whitelist_s, &tree_iter_s, &tree_lit_s, &tree_s,
- &trunc1_s, &trunc_s, &truncate_s, &try_s, &type_error_s,
- &ubit_s, &uchar_s, &uid_k, &uid_s, &uint16_s,
- &uint32_s, &uint64_s, &uint8_s, &uint_s, &ulong_s,
- &unbound_s, &unget_byte_s, &unget_char_s, &union_s, &unique_s,
- &unquote_s, &until_s, &until_star_s, &upcase_k, &uref_s,
- &user_package_s, &userdata_k, &ushort_s, &usr_var_s, &uw_protect_s,
- &val_s, &var_k, &var_s, &vars_k, &vec_list_s,
- &vec_s, &vecref_s, &vector_lit_s, &vm_closure_s, &vm_desc_s,
- &void_s, &warning_s, &wchar_s, &wday_s, &weak_and_k,
- &weak_keys_k, &weak_or_k, &weak_vals_k, &when_s, &while_s,
- &while_star_s, &whole_k, &width_s, &wild_s, &word_char_k,
- &wrap_k, &wstr_d_s, &wstr_s, &wstr_s_s, &y0_s,
- &y1_s, &yday_s, &year_s, &yn_s, &zarray_s,
- &zchar_s, &zerop_s, &zeroplus_s, &zone_s,
+ &listener_auto_infix_s, &listener_greedy_eval_s, &listener_hist_len_s, &listener_multi_line_p_s, &listener_pprint_s,
+ &listener_sel_inclusive_p_s, &lists_k, &lit_s, &load_args_s, &load_hooks_s,
+ &load_path_s, &load_recursive_s, &load_s, &load_search_dirs_s, &load_time_lit_s,
+ &load_time_s, &local_s, &log10_s, &log1p_s, &log2_s,
+ &log_s, &logand_s, &logb_s, &logcount_s, &logior_s,
+ &lognot1_s, &lognot_s, &logtrunc_s, &logxor_s, &long_s,
+ &longest_k, &lstr_s, &lt_s, &mac_env_param_bind_s, &mac_param_bind_s,
+ &macro_k, &macro_s, &macro_time_s, &macrolet_s, &make_struct_lit_s,
+ &mandatory_k, &max_s, &maxgap_k, &maxtimes_k, &maybe_s,
+ &mdo_s, &memq_s, &memql_s, &memqual_s, &merge_s,
+ &meth_s, &min_s, &mingap_k, &mintimes_k, &minus_s,
+ &minusp_s, &mod_s, &mode_k, &mode_s, &modlast_s,
+ &month_s, &mtime_k, &mtime_nsec_s, &mtime_s, &mul_s,
+ &name_k, &name_s, &named_k, &nearbyint_s, &neg_s,
+ &next_s, &next_spec_k, &nextafter_s, &nlink_k, &nlink_s,
+ &noclose_k, &noexpand_s, &none_s, &nongreedy_s, &not_s,
+ &nothrow_k, &noval_s, &null_s, &nullify_s, &number_s,
+ &numeq_s, &numeric_error_s, &oddp_s, &oneplus_s, &op_s,
+ &optional_s, &or_s, &output_s, &pack_s, &package_alist_s,
+ &package_s, &panic_s, &parser_s, &path_exists_s, &path_not_found_s,
+ &path_permission_s, &path_s, &pct_fun_s, &pkg_s, &plus_s,
+ &plusp_s, &postinit_k, &pprint_flo_format_s, &print_base_s, &print_circle_s,
+ &print_flo_digits_s, &print_flo_format_s, &print_flo_precision_s, &print_json_format_s, &print_json_type_s,
+ &print_s, &process_error_s, &prof_s, &prog1_s, &prog2_s,
+ &progn_s, &progv_s, &promise_forced_s, &promise_inprogress_s, &promise_s,
+ &ptr_in_d_s, &ptr_in_s, &ptr_out_d_s, &ptr_out_s, &ptr_out_s_s,
+ &ptr_s, &push_s, &put_buf_s, &put_byte_s, &put_char_s,
+ &put_string_s, &qquote_s, &qref_s, &quant_state_s, &quasi_s,
+ &quasilist_s, &query_error_s, &quote_s, &r_atan2_s, &r_ceil_s,
+ &r_copysign_s, &r_drem_s, &r_expt_s, &r_fdim_s, &r_floor_s,
+ &r_fmax_s, &r_fmin_s, &r_hypot_s, &r_jn_s, &r_ldexp_s,
+ &r_lognot_s, &r_logtrunc_s, &r_mod_s, &r_nextafter_s, &r_remainder_s,
+ &r_round_s, &r_scalb_s, &r_scalbln_s, &r_trunc_s, &r_yn_s,
+ &random_state_s, &random_state_var_s, &random_warmup_s, &range_error_s, &range_s,
+ &rcons_s, &rdev_k, &rdev_s, &read_bad_json_s, &read_json_int_s,
+ &read_unknown_structs_s, &real_time_k, &rebind_s, &rec_source_loc_s, &recip_s,
+ &reflect_k, &regex_s, &remainder_s, &rep_s, &repeat_s,
+ &repeat_spec_k, &require_s, &resolve_k, &rest_s, &restart_s,
+ &return_from_s, &return_s, &rfilt_k, &rint_s, &rlim_s,
+ &round1_s, &round_s, &rplaca_s, &rplacd_s, &sbit_s,
+ &scalb_s, &scalbln_s, &sec_s, &seek_s, &self_path_s,
+ &seq_iter_s, &sequence_s, &set_prop_s, &set_s, &setq_s,
+ &setqf_s, &short_s, &shortest_k, &sign_extend_s, &significand_s,
+ &signum_s, &sin_s, &single_s, &sinh_s, &size_k,
+ &size_s, &skip_s, &slot_s, &slotset_s, &some_s,
+ &space_k, &special_s, &splice_s, &sqrt_s, &square_s,
+ &stack_overflow_s, &standard_k, &stat_s, &static_slot_s, &static_slot_set_s,
+ &stddebug_s, &stderr_s, &stdin_s, &stdio_stream_s, &stdnull_s,
+ &stdout_s, &str_d_s, &str_s, &str_s_s, &stream_s,
+ &string_k, &string_s, &struct_lit_s, &struct_s, &struct_type_s,
+ &switch_s, &sym_s, &symacro_k, &symacrolet_s, &syntax_error_s,
+ &sys_abscond_from_s, &sys_apply_s, &sys_blk_s, &sys_catch_s, &sys_l1_setq_s,
+ &sys_l1_val_s, &sys_lisp1_setq_s, &sys_lisp1_value_s, &sys_mark_special_s, &sys_qquote_s,
+ &sys_splice_s, &sys_unquote_s, &system_error_s, &system_package_s, &tan_s,
+ &tanh_s, &text_s, &tgamma_s, &throw_s, &time_local_s,
+ &time_parse_s, &time_s, &time_string_s, &time_utc_s, &timeout_error_s,
+ &times_k, &tlist_k, &tnode_s, &tobase64_k, &tobase64url_k,
+ &tofloat_k, &tofloat_s, &tohtml_k, &tohtml_star_k, &toint_k,
+ &toint_s, &tonumber_k, &topercent_k, &tourl_k, &trailer_s,
+ &tree_bind_s, &tree_case_s, &tree_construct_s, &tree_fun_whitelist_s, &tree_iter_s,
+ &tree_lit_s, &tree_s, &trunc1_s, &trunc_s, &truncate_s,
+ &try_s, &type_error_s, &ubit_s, &uchar_s, &uid_k,
+ &uid_s, &uint16_s, &uint32_s, &uint64_s, &uint8_s,
+ &uint_s, &ulong_s, &unbound_s, &unget_byte_s, &unget_char_s,
+ &union_s, &unique_s, &unquote_s, &until_s, &until_star_s,
+ &upcase_k, &uref_s, &user_package_s, &userdata_k, &ushort_s,
+ &usr_var_s, &uw_protect_s, &val_s, &var_k, &var_s,
+ &vars_k, &vec_list_s, &vec_s, &vecref_s, &vector_lit_s,
+ &vm_closure_s, &vm_desc_s, &void_s, &warning_s, &wchar_s,
+ &wday_s, &weak_and_k, &weak_keys_k, &weak_or_k, &weak_vals_k,
+ &when_s, &while_s, &while_star_s, &whole_k, &width_s,
+ &wild_s, &word_char_k, &wrap_k, &wstr_d_s, &wstr_s,
+ &wstr_s_s, &y0_s, &y1_s, &yday_s, &year_s,
+ &yn_s, &zarray_s, &zchar_s, &zerop_s, &zeroplus_s,
+ &zone_s,
#if (HAVE_PWUID || HAVE_GRGID)
&passwd_s,
diff --git a/stdlib/ver.tl b/stdlib/ver.tl
index 15c0a5ea..01fe2833 100644
--- a/stdlib/ver.tl
+++ b/stdlib/ver.tl
@@ -1,2 +1,2 @@
-(defvarl lib-version 299)
+(defvarl lib-version 300)
(defvarl *lib-version* lib-version)
diff --git a/tl.vim b/tl.vim
index e15f887d..cf0c6fe4 100644
--- a/tl.vim
+++ b/tl.vim
@@ -24,73 +24,74 @@ syn keyword tl_keyword contained %e% %fun% %pi% *
syn keyword tl_keyword contained *args* *args-eff* *args-full* *child-env*
syn keyword tl_keyword contained *compile-opts* *doc-url* *expand-hook* *filters*
syn keyword tl_keyword contained *full-args* *gensym-counter* *hash-seed* *lib-version*
-syn keyword tl_keyword contained *listener-auto-compound-p* *listener-greedy-eval-p* *listener-hist-len* *listener-multi-line-p*
-syn keyword tl_keyword contained *listener-pprint-p* *listener-sel-inclusive-p* *load-args* *load-hooks*
-syn keyword tl_keyword contained *load-path* *load-search-dirs* *match-macro* *opt-level*
-syn keyword tl_keyword contained *package* *package-alist* *param-macro* *place-clobber-expander*
-syn keyword tl_keyword contained *place-delete-expander* *place-macro* *place-update-expander* *pprint-flo-format*
-syn keyword tl_keyword contained *print-base* *print-circle* *print-flo-digits* *print-flo-format*
-syn keyword tl_keyword contained *print-flo-precision* *print-json-format* *print-json-type* *random-state*
-syn keyword tl_keyword contained *random-warmup* *read-bad-json* *read-json-int* *read-unknown-structs*
-syn keyword tl_keyword contained *rec-source-loc* *stddebug* *stderr* *stdin*
-syn keyword tl_keyword contained *stdlog* *stdnull* *stdout* *struct-clause-expander*
-syn keyword tl_keyword contained *trace-output* *tree-fun-whitelist* *txr-version* *unhandled-hook*
-syn keyword tl_keyword contained + - / /=
-syn keyword tl_keyword contained : := :abandoned :abs
-syn keyword tl_keyword contained :addr :all :android :apf
-syn keyword tl_keyword contained :append :args :atime :auto
-syn keyword tl_keyword contained :awk-again :awk-file :awk-rec :begin
-syn keyword tl_keyword contained :begin-file :blksize :blocks :bool
-syn keyword tl_keyword contained :byte-oriented :cdigit :chars :cint
-syn keyword tl_keyword contained :clean :close :compile :continue
-syn keyword tl_keyword contained :counter :cspace :csv :ctime
-syn keyword tl_keyword contained :cword-char :cygnal :cygwin :dec
-syn keyword tl_keyword contained :decline :delegate :dev :digit
-syn keyword tl_keyword contained :downcase :end :end-file :env
-syn keyword tl_keyword contained :eq-based :eql-based :equal-based :error
-syn keyword tl_keyword contained :explicit-no :fallback :fd :fence
-syn keyword tl_keyword contained :fields :filter :fini :finish
-syn keyword tl_keyword contained :float :form :from-current :from-end
-syn keyword tl_keyword contained :from-start :from_html :frombase64 :frombase64url
-syn keyword tl_keyword contained :fromhtml :frompercent :fromurl :fun
-syn keyword tl_keyword contained :function :gap :gid :greedy
-syn keyword tl_keyword contained :hex :hextoint :inf :infix
-syn keyword tl_keyword contained :inherit :init :ino :inp
-syn keyword tl_keyword contained :inputs :instance :into :key
-syn keyword tl_keyword contained :left :let :lfilt :lines
-syn keyword tl_keyword contained :linux :list :lists :local
-syn keyword tl_keyword contained :longest :macos :macro :mandatory
-syn keyword tl_keyword contained :mass-delegate :match :maxgap :maxtimes
-syn keyword tl_keyword contained :method :mid :mingap :mintimes
-syn keyword tl_keyword contained :mode :mtime :name :named
-syn keyword tl_keyword contained :next-spec :nlink :noclose :nothrow
-syn keyword tl_keyword contained :oct :ok :openbsd :outf
-syn keyword tl_keyword contained :outp :output :owner :perms
-syn keyword tl_keyword contained :postfini :postfix :postinit :prefix
-syn keyword tl_keyword contained :prio :rdev :real-time :reflect
-syn keyword tl_keyword contained :repeat-spec :resolve :rfilt :right
-syn keyword tl_keyword contained :set :set-file :shortest :size
-syn keyword tl_keyword contained :solaris :solaris10 :space :standard
-syn keyword tl_keyword contained :static :str :string :symacro
-syn keyword tl_keyword contained :symlinks :text :times :tlist
-syn keyword tl_keyword contained :to_html :tobase64 :tobase64url :tofloat
-syn keyword tl_keyword contained :tohtml :tohtml* :toint :tonumber
-syn keyword tl_keyword contained :topercent :tourl :uid :unknown
-syn keyword tl_keyword contained :upcase :use :use-from :use-syms
-syn keyword tl_keyword contained :use-syms-as :userdata :var :vars
-syn keyword tl_keyword contained :warn :weak-and :weak-keys :weak-or
-syn keyword tl_keyword contained :weak-vals :whole :word-char :wrap
-syn keyword tl_keyword contained < <= = >
-syn keyword tl_keyword contained >= abort abs abs-path-p
-syn keyword tl_keyword contained acons acons-new aconsql-new acos
-syn keyword tl_keyword contained acosh add-suffix ado af-inet
-syn keyword tl_keyword contained af-inet6 af-unix af-unspec ai-addrconfig
-syn keyword tl_keyword contained ai-all ai-canonname ai-numerichost ai-numericserv
-syn keyword tl_keyword contained ai-passive ai-v4mapped alet align
-syn keyword tl_keyword contained alignof alist-nremove alist-remove all
-syn keyword tl_keyword contained allocate-struct and andf ap
-syn keyword tl_keyword contained apf append append* append-each
-syn keyword tl_keyword contained append-each* append-each-prod append-each-prod* append-match-products
+syn keyword tl_keyword contained *listener-auto-compound-p* *listener-auto-infix-p* *listener-greedy-eval-p* *listener-hist-len*
+syn keyword tl_keyword contained *listener-multi-line-p* *listener-pprint-p* *listener-sel-inclusive-p* *load-args*
+syn keyword tl_keyword contained *load-hooks* *load-path* *load-search-dirs* *match-macro*
+syn keyword tl_keyword contained *opt-level* *package* *package-alist* *param-macro*
+syn keyword tl_keyword contained *place-clobber-expander* *place-delete-expander* *place-macro* *place-update-expander*
+syn keyword tl_keyword contained *pprint-flo-format* *print-base* *print-circle* *print-flo-digits*
+syn keyword tl_keyword contained *print-flo-format* *print-flo-precision* *print-json-format* *print-json-type*
+syn keyword tl_keyword contained *random-state* *random-warmup* *read-bad-json* *read-json-int*
+syn keyword tl_keyword contained *read-unknown-structs* *rec-source-loc* *stddebug* *stderr*
+syn keyword tl_keyword contained *stdin* *stdlog* *stdnull* *stdout*
+syn keyword tl_keyword contained *struct-clause-expander* *trace-output* *tree-fun-whitelist* *txr-version*
+syn keyword tl_keyword contained *unhandled-hook* + - /
+syn keyword tl_keyword contained /= : := :abandoned
+syn keyword tl_keyword contained :abs :addr :all :android
+syn keyword tl_keyword contained :apf :append :args :atime
+syn keyword tl_keyword contained :auto :awk-again :awk-file :awk-rec
+syn keyword tl_keyword contained :begin :begin-file :blksize :blocks
+syn keyword tl_keyword contained :bool :byte-oriented :cdigit :chars
+syn keyword tl_keyword contained :cint :clean :close :compile
+syn keyword tl_keyword contained :continue :counter :cspace :csv
+syn keyword tl_keyword contained :ctime :cword-char :cygnal :cygwin
+syn keyword tl_keyword contained :dec :decline :delegate :dev
+syn keyword tl_keyword contained :digit :downcase :end :end-file
+syn keyword tl_keyword contained :env :eq-based :eql-based :equal-based
+syn keyword tl_keyword contained :error :explicit-no :fallback :fd
+syn keyword tl_keyword contained :fence :fields :filter :fini
+syn keyword tl_keyword contained :finish :float :form :from-current
+syn keyword tl_keyword contained :from-end :from-start :from_html :frombase64
+syn keyword tl_keyword contained :frombase64url :fromhtml :frompercent :fromurl
+syn keyword tl_keyword contained :fun :function :gap :gid
+syn keyword tl_keyword contained :greedy :hex :hextoint :inf
+syn keyword tl_keyword contained :infix :inherit :init :ino
+syn keyword tl_keyword contained :inp :inputs :instance :into
+syn keyword tl_keyword contained :key :left :let :lfilt
+syn keyword tl_keyword contained :lines :linux :list :lists
+syn keyword tl_keyword contained :local :longest :macos :macro
+syn keyword tl_keyword contained :mandatory :mass-delegate :match :maxgap
+syn keyword tl_keyword contained :maxtimes :method :mid :mingap
+syn keyword tl_keyword contained :mintimes :mode :mtime :name
+syn keyword tl_keyword contained :named :next-spec :nlink :noclose
+syn keyword tl_keyword contained :nothrow :oct :ok :openbsd
+syn keyword tl_keyword contained :outf :outp :output :owner
+syn keyword tl_keyword contained :perms :postfini :postfix :postinit
+syn keyword tl_keyword contained :prefix :prio :rdev :real-time
+syn keyword tl_keyword contained :reflect :repeat-spec :resolve :rfilt
+syn keyword tl_keyword contained :right :set :set-file :shortest
+syn keyword tl_keyword contained :size :solaris :solaris10 :space
+syn keyword tl_keyword contained :standard :static :str :string
+syn keyword tl_keyword contained :symacro :symlinks :text :times
+syn keyword tl_keyword contained :tlist :to_html :tobase64 :tobase64url
+syn keyword tl_keyword contained :tofloat :tohtml :tohtml* :toint
+syn keyword tl_keyword contained :tonumber :topercent :tourl :trace
+syn keyword tl_keyword contained :uid :unknown :upcase :use
+syn keyword tl_keyword contained :use-from :use-syms :use-syms-as :userdata
+syn keyword tl_keyword contained :var :vars :warn :weak-and
+syn keyword tl_keyword contained :weak-keys :weak-or :weak-vals :whole
+syn keyword tl_keyword contained :word-char :wrap < <=
+syn keyword tl_keyword contained = > >= abort
+syn keyword tl_keyword contained abs abs-path-p acons acons-new
+syn keyword tl_keyword contained aconsql-new acos acosh add-suffix
+syn keyword tl_keyword contained ado af-inet af-inet6 af-unix
+syn keyword tl_keyword contained af-unspec ai-addrconfig ai-all ai-canonname
+syn keyword tl_keyword contained ai-numerichost ai-numericserv ai-passive ai-v4mapped
+syn keyword tl_keyword contained alet align alignof alist-nremove
+syn keyword tl_keyword contained alist-remove all allocate-struct and
+syn keyword tl_keyword contained andf ap apf append
+syn keyword tl_keyword contained append* append-each append-each* append-each-prod
+syn keyword tl_keyword contained append-each-prod* append-match-case-products append-match-cases append-match-products
syn keyword tl_keyword contained append-matches apply aret arithp
syn keyword tl_keyword contained array arraysize ash asin
syn keyword tl_keyword contained asinh assert assoc assq
@@ -106,64 +107,68 @@ syn keyword tl_keyword contained bit bitset blkcnt-t blksize-t
syn keyword tl_keyword contained block block* bool boundp
syn keyword tl_keyword contained bracket break-str brkint bs0
syn keyword tl_keyword contained bs1 bsdly bstr bstr-d
-syn keyword tl_keyword contained bstr-s buf buf-alloc-size buf-carray
-syn keyword tl_keyword contained buf-compress buf-d buf-decompress buf-get-char
-syn keyword tl_keyword contained buf-get-cptr buf-get-double buf-get-float buf-get-i16
-syn keyword tl_keyword contained buf-get-i32 buf-get-i64 buf-get-i8 buf-get-int
-syn keyword tl_keyword contained buf-get-long buf-get-short buf-get-u16 buf-get-u32
-syn keyword tl_keyword contained buf-get-u64 buf-get-u8 buf-get-uchar buf-get-uint
-syn keyword tl_keyword contained buf-get-ulong buf-get-ushort buf-int buf-list
-syn keyword tl_keyword contained buf-put-buf buf-put-char buf-put-cptr buf-put-double
-syn keyword tl_keyword contained buf-put-float buf-put-i16 buf-put-i32 buf-put-i64
-syn keyword tl_keyword contained buf-put-i8 buf-put-int buf-put-long buf-put-short
-syn keyword tl_keyword contained buf-put-u16 buf-put-u32 buf-put-u64 buf-put-u8
-syn keyword tl_keyword contained buf-put-uchar buf-put-uint buf-put-ulong buf-put-ushort
-syn keyword tl_keyword contained buf-set-length buf-str buf-trim buf-uint
-syn keyword tl_keyword contained bufp build build-list buildn
-syn keyword tl_keyword contained built-in-type-p butlast butlastn caaaaar
-syn keyword tl_keyword contained caaaadr caaaar caaadar caaaddr
-syn keyword tl_keyword contained caaadr caaar caadaar caadadr
-syn keyword tl_keyword contained caadar caaddar caadddr caaddr
-syn keyword tl_keyword contained caadr caar cadaaar cadaadr
-syn keyword tl_keyword contained cadaar cadadar cadaddr cadadr
-syn keyword tl_keyword contained cadar caddaar caddadr caddar
-syn keyword tl_keyword contained cadddar caddddr cadddr caddr
-syn keyword tl_keyword contained cadr call call-clobber-expander call-delete-expander
-syn keyword tl_keyword contained call-finalizers call-super-fun call-super-method call-update-expander
-syn keyword tl_keyword contained callf car carray carray-blank
-syn keyword tl_keyword contained carray-buf carray-buf-sync carray-cptr carray-dup
-syn keyword tl_keyword contained carray-free carray-get carray-getz carray-int
-syn keyword tl_keyword contained carray-list carray-own carray-pun carray-put
-syn keyword tl_keyword contained carray-putz carray-ref carray-refset carray-replace
-syn keyword tl_keyword contained carray-set-length carray-sub carray-type carray-uint
-syn keyword tl_keyword contained carray-vec carrayp case case*
-syn keyword tl_keyword contained caseq caseq* caseql caseql*
-syn keyword tl_keyword contained casequal casequal* cat-files cat-str
-syn keyword tl_keyword contained cat-streams cat-vec catch catch*
-syn keyword tl_keyword contained catch** catenated-stream-p catenated-stream-push cbaud
-syn keyword tl_keyword contained cbaudex cbrt cdaaaar cdaaadr
-syn keyword tl_keyword contained cdaaar cdaadar cdaaddr cdaadr
-syn keyword tl_keyword contained cdaar cdadaar cdadadr cdadar
-syn keyword tl_keyword contained cdaddar cdadddr cdaddr cdadr
-syn keyword tl_keyword contained cdar cddaaar cddaadr cddaar
-syn keyword tl_keyword contained cddadar cddaddr cddadr cddar
-syn keyword tl_keyword contained cdddaar cdddadr cdddar cddddar
-syn keyword tl_keyword contained cdddddr cddddr cdddr cddr
-syn keyword tl_keyword contained cdr ceil ceil-rem chain
-syn keyword tl_keyword contained chand char chdir chmod
-syn keyword tl_keyword contained chmod-rec chown chown-rec chr-digit
-syn keyword tl_keyword contained chr-int chr-isalnum chr-isalpha chr-isascii
-syn keyword tl_keyword contained chr-isblank chr-iscntrl chr-isdigit chr-isgraph
-syn keyword tl_keyword contained chr-islower chr-isprint chr-ispunct chr-isspace
-syn keyword tl_keyword contained chr-isunisp chr-isupper chr-isxdigit chr-num
-syn keyword tl_keyword contained chr-str chr-str-set chr-tolower chr-toupper
-syn keyword tl_keyword contained chr-xdigit chrp clamp clean-file
-syn keyword tl_keyword contained clear-dirty clear-error clear-mask clear-struct
-syn keyword tl_keyword contained clearhash clocal clock-t clockid-t
-syn keyword tl_keyword contained close close-lazy-streams close-stream closedir
-syn keyword tl_keyword contained closelog closure cmp-str cmspar
-syn keyword tl_keyword contained cnshuffle cnsort coded-length collect-each
-syn keyword tl_keyword contained collect-each* collect-each-prod collect-each-prod* comb
+syn keyword tl_keyword contained bstr-s buf buf-alloc-size buf-and
+syn keyword tl_keyword contained buf-ash buf-binary-width buf-bit buf-bitset
+syn keyword tl_keyword contained buf-carray buf-compress buf-count-ones buf-d
+syn keyword tl_keyword contained buf-decompress buf-fash buf-get-char buf-get-cptr
+syn keyword tl_keyword contained buf-get-double buf-get-float buf-get-i16 buf-get-i32
+syn keyword tl_keyword contained buf-get-i64 buf-get-i8 buf-get-int buf-get-long
+syn keyword tl_keyword contained buf-get-short buf-get-u16 buf-get-u32 buf-get-u64
+syn keyword tl_keyword contained buf-get-u8 buf-get-uchar buf-get-uint buf-get-ulong
+syn keyword tl_keyword contained buf-get-ushort buf-int buf-list buf-not
+syn keyword tl_keyword contained buf-or buf-put-buf buf-put-char buf-put-cptr
+syn keyword tl_keyword contained buf-put-double buf-put-float buf-put-i16 buf-put-i32
+syn keyword tl_keyword contained buf-put-i64 buf-put-i8 buf-put-int buf-put-long
+syn keyword tl_keyword contained buf-put-short buf-put-u16 buf-put-u32 buf-put-u64
+syn keyword tl_keyword contained buf-put-u8 buf-put-uchar buf-put-uint buf-put-ulong
+syn keyword tl_keyword contained buf-put-ushort buf-set-length buf-str buf-test
+syn keyword tl_keyword contained buf-trim buf-trunc buf-uint buf-xor
+syn keyword tl_keyword contained buf-xor-pattern buf-zero-p bufp build
+syn keyword tl_keyword contained build-list buildn built-in-type-p butlast
+syn keyword tl_keyword contained butlastn caaaaar caaaadr caaaar
+syn keyword tl_keyword contained caaadar caaaddr caaadr caaar
+syn keyword tl_keyword contained caadaar caadadr caadar caaddar
+syn keyword tl_keyword contained caadddr caaddr caadr caar
+syn keyword tl_keyword contained cadaaar cadaadr cadaar cadadar
+syn keyword tl_keyword contained cadaddr cadadr cadar caddaar
+syn keyword tl_keyword contained caddadr caddar cadddar caddddr
+syn keyword tl_keyword contained cadddr caddr cadr call
+syn keyword tl_keyword contained call-clobber-expander call-delete-expander call-finalizers call-super-fun
+syn keyword tl_keyword contained call-super-method call-update-expander callf car
+syn keyword tl_keyword contained carray carray-blank carray-buf carray-buf-sync
+syn keyword tl_keyword contained carray-cptr carray-dup carray-free carray-get
+syn keyword tl_keyword contained carray-getz carray-int carray-list carray-own
+syn keyword tl_keyword contained carray-pun carray-put carray-putz carray-ref
+syn keyword tl_keyword contained carray-refset carray-replace carray-set-length carray-sub
+syn keyword tl_keyword contained carray-type carray-uint carray-vec carrayp
+syn keyword tl_keyword contained case case* caseq caseq*
+syn keyword tl_keyword contained caseql caseql* casequal casequal*
+syn keyword tl_keyword contained cat-files cat-str cat-streams cat-vec
+syn keyword tl_keyword contained catch catch* catch** catenated-stream-p
+syn keyword tl_keyword contained catenated-stream-push cbaud cbaudex cbrt
+syn keyword tl_keyword contained cdaaaar cdaaadr cdaaar cdaadar
+syn keyword tl_keyword contained cdaaddr cdaadr cdaar cdadaar
+syn keyword tl_keyword contained cdadadr cdadar cdaddar cdadddr
+syn keyword tl_keyword contained cdaddr cdadr cdar cddaaar
+syn keyword tl_keyword contained cddaadr cddaar cddadar cddaddr
+syn keyword tl_keyword contained cddadr cddar cdddaar cdddadr
+syn keyword tl_keyword contained cdddar cddddar cdddddr cddddr
+syn keyword tl_keyword contained cdddr cddr cdr ceil
+syn keyword tl_keyword contained ceil-rem chain chand char
+syn keyword tl_keyword contained chdir chmod chmod-rec chown
+syn keyword tl_keyword contained chown-rec chr-digit chr-int chr-isalnum
+syn keyword tl_keyword contained chr-isalpha chr-isascii chr-isblank chr-iscntrl
+syn keyword tl_keyword contained chr-isdigit chr-isgraph chr-islower chr-isprint
+syn keyword tl_keyword contained chr-ispunct chr-isspace chr-isunisp chr-isupper
+syn keyword tl_keyword contained chr-isxdigit chr-num chr-str chr-str-set
+syn keyword tl_keyword contained chr-tolower chr-toupper chr-xdigit chrp
+syn keyword tl_keyword contained clamp clean-file clear-dirty clear-error
+syn keyword tl_keyword contained clear-mask clear-struct clearhash clocal
+syn keyword tl_keyword contained clock-t clockid-t close close-lazy-streams
+syn keyword tl_keyword contained close-stream closedir closelog closure
+syn keyword tl_keyword contained cmp-str cmspar cnshuffle cnsort
+syn keyword tl_keyword contained coded-length collect-each collect-each* collect-each-prod
+syn keyword tl_keyword contained collect-each-prod* collect-match-case-products collect-match-cases comb
syn keyword tl_keyword contained combi command-get command-get-buf command-get-json
syn keyword tl_keyword contained command-get-jsons command-get-lines command-get-string command-put
syn keyword tl_keyword contained command-put-buf command-put-json command-put-jsons command-put-lines
@@ -201,100 +206,101 @@ syn keyword tl_keyword contained defsymacro defun defun-match defvar
syn keyword tl_keyword contained defvarl del delay delcons
syn keyword tl_keyword contained delete-package dev-t diff digits
syn keyword tl_keyword contained digpow dir-name dirstat disassemble
-syn keyword tl_keyword contained display-width divides dlclose dlopen
-syn keyword tl_keyword contained dlsym dlsym-checked dlvsym dlvsym-checked
-syn keyword tl_keyword contained do doc dohash doloop
-syn keyword tl_keyword contained doloop* dotimes double downcase-str
-syn keyword tl_keyword contained drem drop drop-until drop-while
-syn keyword tl_keyword contained dt-blk dt-chr dt-dir dt-fifo
-syn keyword tl_keyword contained dt-lnk dt-reg dt-sock dt-unknown
-syn keyword tl_keyword contained dump-compiled-objects dump-deferred-warnings dup dupfd
-syn keyword tl_keyword contained dwim e2big eacces each
-syn keyword tl_keyword contained each* each-false each-match each-match-product
-syn keyword tl_keyword contained each-prod each-prod* each-true eaddrinuse
-syn keyword tl_keyword contained eaddrnotavail eafnosupport eagain ealready
-syn keyword tl_keyword contained ebadf ebadmsg ebusy ecanceled
-syn keyword tl_keyword contained ecase ecase* ecaseq ecaseq*
-syn keyword tl_keyword contained ecaseql ecaseql* ecasequal ecasequal*
-syn keyword tl_keyword contained echild echo echoctl echoe
-syn keyword tl_keyword contained echok echoke echonl echoprt
-syn keyword tl_keyword contained econnaborted econnrefused econnreset edeadlk
-syn keyword tl_keyword contained edestaddrreq edom edquot eexist
-syn keyword tl_keyword contained efault efbig ehostunreach eidrm
-syn keyword tl_keyword contained eighth eilseq einprogress eintr
-syn keyword tl_keyword contained einval eio eisconn eisdir
-syn keyword tl_keyword contained elemsize elemtype eloop emfile
-syn keyword tl_keyword contained emlink empty emsgsize emultihop
-syn keyword tl_keyword contained enametoolong endgrent endp endpwent
-syn keyword tl_keyword contained ends-with enetdown enetreset enetunreach
-syn keyword tl_keyword contained enfile enobufs enodata enodev
-syn keyword tl_keyword contained enoent enoexec enolck enolink
-syn keyword tl_keyword contained enomem enomsg enoprotoopt enospc
-syn keyword tl_keyword contained enosr enostr enosys enotconn
-syn keyword tl_keyword contained enotdir enotempty enotrecoverable enotsock
-syn keyword tl_keyword contained enotsup enotty ensure ensure-dir
-syn keyword tl_keyword contained enum enumed enumlet env
-syn keyword tl_keyword contained env-fbind env-fbindings env-hash env-next
-syn keyword tl_keyword contained env-vbind env-vbindings enxio eopnotsupp
-syn keyword tl_keyword contained eoverflow eownerdead eperm epipe
-syn keyword tl_keyword contained eproto eprotonosupport eprototype eq
-syn keyword tl_keyword contained eql equal equot erange
-syn keyword tl_keyword contained erf erfc erofs errno
-syn keyword tl_keyword contained error espipe esrch estale
-syn keyword tl_keyword contained etime etimedout etxtbsy etypecase
-syn keyword tl_keyword contained eval eval-only evenp ewouldblock
-syn keyword tl_keyword contained exception-subtype-map exception-subtype-p exdev exec
-syn keyword tl_keyword contained exit exit* exp exp10
-syn keyword tl_keyword contained exp2 expand expand* expand-hook-combine
-syn keyword tl_keyword contained expand-left expand-right expand-with-free-refs expander-let
-syn keyword tl_keyword contained expm1 expt exptmod extproc
-syn keyword tl_keyword contained f$ f-dupfd f-dupfd-cloexec f-getfd
-syn keyword tl_keyword contained f-getfl f-getlk f-rdlck f-setfd
-syn keyword tl_keyword contained f-setfl f-setlk f-setlkw f-unlck
-syn keyword tl_keyword contained f-wrlck f^ f^$ false
-syn keyword tl_keyword contained fboundp fcntl fd-cloexec fdim
-syn keyword tl_keyword contained ff0 ff1 ffdly ffi
-syn keyword tl_keyword contained ffi-alignof ffi-arraysize ffi-call ffi-elemsize
-syn keyword tl_keyword contained ffi-elemtype ffi-get ffi-in ffi-make-call-desc
-syn keyword tl_keyword contained ffi-make-closure ffi-offsetof ffi-out ffi-put
-syn keyword tl_keyword contained ffi-put-into ffi-size ffi-type-compile ffi-type-operator-p
-syn keyword tl_keyword contained ffi-type-p ffi-typedef fifth file-append
-syn keyword tl_keyword contained file-append-buf file-append-json file-append-jsons file-append-lines
-syn keyword tl_keyword contained file-append-objects file-append-string file-get file-get-buf
-syn keyword tl_keyword contained file-get-json file-get-jsons file-get-lines file-get-objects
-syn keyword tl_keyword contained file-get-string file-place-buf file-put file-put-buf
-syn keyword tl_keyword contained file-put-json file-put-jsons file-put-lines file-put-objects
-syn keyword tl_keyword contained file-put-string fileno fill-buf fill-buf-adjust
-syn keyword tl_keyword contained fill-carray fill-obj fill-vec filter-equal
-syn keyword tl_keyword contained filter-string-tree finalize find find-frame
-syn keyword tl_keyword contained find-frames find-frames-by-mask find-if find-max
-syn keyword tl_keyword contained find-max-key find-maxes find-min find-min-key
-syn keyword tl_keyword contained find-mins find-package find-struct-type find-symbol
-syn keyword tl_keyword contained find-symbol-fb find-true first fixnum-max
-syn keyword tl_keyword contained fixnum-min fixnump flatcar flatcar*
-syn keyword tl_keyword contained flatten flatten* flet flip
-syn keyword tl_keyword contained flipargs flo-dig flo-down flo-epsilon
-syn keyword tl_keyword contained flo-get-round-mode flo-int flo-max flo-max-dig
-syn keyword tl_keyword contained flo-min flo-near flo-set-round-mode flo-str
-syn keyword tl_keyword contained flo-up flo-zero float floatp
-syn keyword tl_keyword contained floor floor-rem flow flush-stream
-syn keyword tl_keyword contained flusho fmakunbound fmax fmin
-syn keyword tl_keyword contained fmt fnm-casefold fnm-extmatch fnm-leading-dir
-syn keyword tl_keyword contained fnm-noescape fnm-pathname fnm-period fnmatch
-syn keyword tl_keyword contained for for* force force-break
-syn keyword tl_keyword contained fork format fourth fr$
-syn keyword tl_keyword contained fr^ fr^$ from frr
-syn keyword tl_keyword contained fsblkcnt-t fsfilcnt-t fstat ftw
-syn keyword tl_keyword contained ftw-actionretval ftw-chdir ftw-continue ftw-d
-syn keyword tl_keyword contained ftw-depth ftw-dnr ftw-dp ftw-f
-syn keyword tl_keyword contained ftw-mount ftw-ns ftw-phys ftw-skip-siblings
-syn keyword tl_keyword contained ftw-skip-subtree ftw-sl ftw-sln ftw-stop
-syn keyword tl_keyword contained fun fun-fixparam-count fun-optparam-count fun-variadic
-syn keyword tl_keyword contained func-get-env func-get-form func-get-name func-set-env
-syn keyword tl_keyword contained functionp gamma gcd gen
-syn keyword tl_keyword contained gen-hash-seed generate gensym gequal
-syn keyword tl_keyword contained get-buf-from-stream get-byte get-char get-clobber-expander
-syn keyword tl_keyword contained get-csv get-delete-expander get-error get-error-str
+syn keyword tl_keyword contained display-width div divides dlclose
+syn keyword tl_keyword contained dlopen dlsym dlsym-checked dlvsym
+syn keyword tl_keyword contained dlvsym-checked do doc dohash
+syn keyword tl_keyword contained doloop doloop* dotimes double
+syn keyword tl_keyword contained downcase-str drem drop drop-until
+syn keyword tl_keyword contained drop-while dt-blk dt-chr dt-dir
+syn keyword tl_keyword contained dt-fifo dt-lnk dt-reg dt-sock
+syn keyword tl_keyword contained dt-unknown dump-compiled-objects dump-deferred-warnings dup
+syn keyword tl_keyword contained dupfd dwim e2big eacces
+syn keyword tl_keyword contained each each* each-false each-match
+syn keyword tl_keyword contained each-match-case each-match-case-product each-match-product each-prod
+syn keyword tl_keyword contained each-prod* each-true eaddrinuse eaddrnotavail
+syn keyword tl_keyword contained eafnosupport eagain ealready ebadf
+syn keyword tl_keyword contained ebadmsg ebusy ecanceled ecase
+syn keyword tl_keyword contained ecase* ecaseq ecaseq* ecaseql
+syn keyword tl_keyword contained ecaseql* ecasequal ecasequal* echild
+syn keyword tl_keyword contained echo echoctl echoe echok
+syn keyword tl_keyword contained echoke echonl echoprt econnaborted
+syn keyword tl_keyword contained econnrefused econnreset edeadlk edestaddrreq
+syn keyword tl_keyword contained edom edquot eexist efault
+syn keyword tl_keyword contained efbig ehostunreach eidrm eighth
+syn keyword tl_keyword contained eilseq einprogress eintr einval
+syn keyword tl_keyword contained eio eisconn eisdir elemsize
+syn keyword tl_keyword contained elemtype eloop emfile emlink
+syn keyword tl_keyword contained empty emsgsize emultihop enametoolong
+syn keyword tl_keyword contained endgrent endp endpwent ends-with
+syn keyword tl_keyword contained enetdown enetreset enetunreach enfile
+syn keyword tl_keyword contained enobufs enodata enodev enoent
+syn keyword tl_keyword contained enoexec enolck enolink enomem
+syn keyword tl_keyword contained enomsg enoprotoopt enospc enosr
+syn keyword tl_keyword contained enostr enosys enotconn enotdir
+syn keyword tl_keyword contained enotempty enotrecoverable enotsock enotsup
+syn keyword tl_keyword contained enotty ensure ensure-dir enum
+syn keyword tl_keyword contained enumed enumlet env env-fbind
+syn keyword tl_keyword contained env-fbindings env-hash env-next env-vbind
+syn keyword tl_keyword contained env-vbindings enxio eopnotsupp eoverflow
+syn keyword tl_keyword contained eownerdead eperm epipe eproto
+syn keyword tl_keyword contained eprotonosupport eprototype eq eql
+syn keyword tl_keyword contained equal equot erange erf
+syn keyword tl_keyword contained erfc erofs errno error
+syn keyword tl_keyword contained espipe esrch estale etime
+syn keyword tl_keyword contained etimedout etxtbsy etypecase eval
+syn keyword tl_keyword contained eval-only evenp ewouldblock exception-subtype-map
+syn keyword tl_keyword contained exception-subtype-p exdev exec exit
+syn keyword tl_keyword contained exit* exp exp10 exp2
+syn keyword tl_keyword contained expand expand* expand-hook-combine expand-left
+syn keyword tl_keyword contained expand-right expand-with-free-refs expm1 expt
+syn keyword tl_keyword contained exptmod extproc f$ f-dupfd
+syn keyword tl_keyword contained f-dupfd-cloexec f-getfd f-getfl f-getlk
+syn keyword tl_keyword contained f-rdlck f-setfd f-setfl f-setlk
+syn keyword tl_keyword contained f-setlkw f-unlck f-wrlck f^
+syn keyword tl_keyword contained f^$ false fboundp fcntl
+syn keyword tl_keyword contained fd-cloexec fdim ff0 ff1
+syn keyword tl_keyword contained ffdly ffi ffi-alignof ffi-arraysize
+syn keyword tl_keyword contained ffi-call ffi-elemsize ffi-elemtype ffi-get
+syn keyword tl_keyword contained ffi-in ffi-make-call-desc ffi-make-closure ffi-offsetof
+syn keyword tl_keyword contained ffi-out ffi-put ffi-put-into ffi-size
+syn keyword tl_keyword contained ffi-type-compile ffi-type-operator-p ffi-type-p ffi-typedef
+syn keyword tl_keyword contained fifth file-append file-append-buf file-append-json
+syn keyword tl_keyword contained file-append-jsons file-append-lines file-append-objects file-append-string
+syn keyword tl_keyword contained file-get file-get-buf file-get-json file-get-jsons
+syn keyword tl_keyword contained file-get-lines file-get-objects file-get-string file-place-buf
+syn keyword tl_keyword contained file-put file-put-buf file-put-json file-put-jsons
+syn keyword tl_keyword contained file-put-lines file-put-objects file-put-string fileno
+syn keyword tl_keyword contained fill-buf fill-buf-adjust fill-carray fill-obj
+syn keyword tl_keyword contained fill-vec filter-equal filter-string-tree finalize
+syn keyword tl_keyword contained find find-frame find-frames find-frames-by-mask
+syn keyword tl_keyword contained find-if find-max find-max-key find-maxes
+syn keyword tl_keyword contained find-min find-min-key find-mins find-package
+syn keyword tl_keyword contained find-struct-type find-symbol find-symbol-fb find-true
+syn keyword tl_keyword contained finish-infix first fixnum-max fixnum-min
+syn keyword tl_keyword contained fixnump flatcar flatcar* flatten
+syn keyword tl_keyword contained flatten* flet flip flipargs
+syn keyword tl_keyword contained flo-dig flo-down flo-epsilon flo-get-round-mode
+syn keyword tl_keyword contained flo-int flo-max flo-max-dig flo-min
+syn keyword tl_keyword contained flo-near flo-set-round-mode flo-str flo-up
+syn keyword tl_keyword contained flo-zero float floatp floor
+syn keyword tl_keyword contained floor-rem flow flush-stream flusho
+syn keyword tl_keyword contained fmakunbound fmax fmin fmt
+syn keyword tl_keyword contained fnm-casefold fnm-extmatch fnm-leading-dir fnm-noescape
+syn keyword tl_keyword contained fnm-pathname fnm-period fnmatch for
+syn keyword tl_keyword contained for* force force-break fork
+syn keyword tl_keyword contained format fourth fr$ fr^
+syn keyword tl_keyword contained fr^$ from frr fsblkcnt-t
+syn keyword tl_keyword contained fsfilcnt-t fstat ftw ftw-actionretval
+syn keyword tl_keyword contained ftw-chdir ftw-continue ftw-d ftw-depth
+syn keyword tl_keyword contained ftw-dnr ftw-dp ftw-f ftw-mount
+syn keyword tl_keyword contained ftw-ns ftw-phys ftw-skip-siblings ftw-skip-subtree
+syn keyword tl_keyword contained ftw-sl ftw-sln ftw-stop fun
+syn keyword tl_keyword contained fun-fixparam-count fun-optparam-count fun-variadic func-get-env
+syn keyword tl_keyword contained func-get-form func-get-name func-set-env functionp
+syn keyword tl_keyword contained gamma gcd gen gen-hash-seed
+syn keyword tl_keyword contained generate gensym gequal get-buf-from-stream
+syn keyword tl_keyword contained get-byte get-char get-clobber-expander get-csv
+syn keyword tl_keyword contained get-delete-expander get-delimited-string get-error get-error-str
syn keyword tl_keyword contained get-frames get-hash-userdata get-indent get-indent-mode
syn keyword tl_keyword contained get-json get-jsons get-line get-line-as-buf
syn keyword tl_keyword contained get-lines get-list-from-stream get-obj get-sig-handler
@@ -320,73 +326,74 @@ syn keyword tl_keyword contained hash-peek hash-proper-subset hash-props hash-re
syn keyword tl_keyword contained hash-revget hash-subset hash-symdiff hash-uni
syn keyword tl_keyword contained hash-update hash-update-1 hash-userdata hash-values
syn keyword tl_keyword contained hash-zip hashp have hist-sort
-syn keyword tl_keyword contained hist-sort-by hlet hlet* html-decode
-syn keyword tl_keyword contained html-encode html-encode* hupcl hypot
-syn keyword tl_keyword contained iapply icanon icrnl id-t
-syn keyword tl_keyword contained identity identity* ido iexten
-syn keyword tl_keyword contained if if-match ifa iff
-syn keyword tl_keyword contained iffi iflet ifx ignbrk
-syn keyword tl_keyword contained igncr ignerr ignore ignpar
-syn keyword tl_keyword contained ignwarn imaxbel improper-plist-to-alist in
-syn keyword tl_keyword contained in-package in-range in-range* in6addr-any
-syn keyword tl_keyword contained in6addr-loopback in6addr-str inaddr-any inaddr-loopback
-syn keyword tl_keyword contained inaddr-str inc inc-indent inc-indent-abs
-syn keyword tl_keyword contained indent-code indent-data indent-foff indent-off
-syn keyword tl_keyword contained inhash inlcr ino-t inpck
-syn keyword tl_keyword contained int int-buf int-carray int-chr
-syn keyword tl_keyword contained int-cptr int-flo int-ptr-t int-str
-syn keyword tl_keyword contained int16 int32 int64 int8
-syn keyword tl_keyword contained integerp intern intern-fb interp-fun-p
-syn keyword tl_keyword contained interpose intmax-t inv-cum-norm invoke-catch
-syn keyword tl_keyword contained ip ipf ipproto-ip ipproto-ipv6
-syn keyword tl_keyword contained ipproto-tcp ipproto-udp ipv6-join-group ipv6-leave-group
-syn keyword tl_keyword contained ipv6-multicast-hops ipv6-multicast-if ipv6-multicast-loop ipv6-unicast-hops
-syn keyword tl_keyword contained ipv6-v6only iread isatty isec
-syn keyword tl_keyword contained isecp isig isqrt istrip
-syn keyword tl_keyword contained iter-begin iter-cat iter-item iter-more
-syn keyword tl_keyword contained iter-reset iter-step iterable iterp
-syn keyword tl_keyword contained itimer-prof itimer-real itimer-virtual iuclc
-syn keyword tl_keyword contained iutf8 ixany ixoff ixon
-syn keyword tl_keyword contained j0 j1 jmp-buf jn
-syn keyword tl_keyword contained join join-with json juxt
-syn keyword tl_keyword contained keep keep-if keep-if* keep-keys-if
-syn keyword tl_keyword contained keep-match-products keep-matches keepq keepql
-syn keyword tl_keyword contained keepqual key key-t keyword-package
-syn keyword tl_keyword contained keywordp kill labels lambda
-syn keyword tl_keyword contained lambda-match last lazy-str lazy-str-force
-syn keyword tl_keyword contained lazy-str-force-upto lazy-str-get-trailing-list lazy-stream-cons lazy-stringp
-syn keyword tl_keyword contained lchown lcm lcons lcons-car
-syn keyword tl_keyword contained lcons-cdr lcons-force lcons-fun lconsp
-syn keyword tl_keyword contained ldexp ldiff ldo le-double
-syn keyword tl_keyword contained le-float le-int16 le-int32 le-int64
-syn keyword tl_keyword contained le-uint16 le-uint32 le-uint64 left
-syn keyword tl_keyword contained len length length-< length-buf
-syn keyword tl_keyword contained length-carray length-list length-list-< length-str
-syn keyword tl_keyword contained length-str-< length-str-<= length-str-> length-str->=
-syn keyword tl_keyword contained length-vec lequal less let
-syn keyword tl_keyword contained let* letrec lexical-binding-kind lexical-fun-binding-kind
-syn keyword tl_keyword contained lexical-fun-p lexical-lisp1-binding lexical-macro-p lexical-symacro-p
-syn keyword tl_keyword contained lexical-var-p lflow lgamma lib-version
-syn keyword tl_keyword contained link lisp-parse list list*
-syn keyword tl_keyword contained list-carray list-seq list-str list-vec
-syn keyword tl_keyword contained list-vector listp lnew lnew*
-syn keyword tl_keyword contained load load-args-process load-args-recurse load-for
-syn keyword tl_keyword contained load-time loand loff-t log
-syn keyword tl_keyword contained log-alert log-auth log-authpriv log-cons
-syn keyword tl_keyword contained log-crit log-daemon log-debug log-emerg
-syn keyword tl_keyword contained log-err log-info log-ndelay log-notice
-syn keyword tl_keyword contained log-nowait log-odelay log-perror log-pid
-syn keyword tl_keyword contained log-user log-warning log10 log1p
-syn keyword tl_keyword contained log2 logand logb logcount
-syn keyword tl_keyword contained logior lognot logtest logtrunc
-syn keyword tl_keyword contained logxor long long-suffix longjmp
-syn keyword tl_keyword contained longlong lop lop1 lopf
-syn keyword tl_keyword contained lopip lset lstat lutimes
-syn keyword tl_keyword contained m$ m^ m^$ mac-env-param-bind
-syn keyword tl_keyword contained mac-param-bind macro-ancestor macro-form-p macro-time
-syn keyword tl_keyword contained macroexpand macroexpand-1 macroexpand-1-lisp1 macroexpand-1-place
-syn keyword tl_keyword contained macroexpand-lisp1 macroexpand-match macroexpand-params macroexpand-place
-syn keyword tl_keyword contained macroexpand-struct-clause macrolet madv-dodump madv-dofork
+syn keyword tl_keyword contained hist-sort-by hlet hlet* hmac-md5
+syn keyword tl_keyword contained hmac-sha1 hmac-sha256 html-decode html-encode
+syn keyword tl_keyword contained html-encode* hupcl hypot iapply
+syn keyword tl_keyword contained icanon icrnl id-t identity
+syn keyword tl_keyword contained identity* ido iexten if
+syn keyword tl_keyword contained if-match ifa iff iffi
+syn keyword tl_keyword contained iflet ifx ignbrk igncr
+syn keyword tl_keyword contained ignerr ignore ignpar ignwarn
+syn keyword tl_keyword contained imaxbel improper-plist-to-alist in in-package
+syn keyword tl_keyword contained in-range in-range* in6addr-any in6addr-loopback
+syn keyword tl_keyword contained in6addr-str inaddr-any inaddr-loopback inaddr-str
+syn keyword tl_keyword contained inc inc-indent inc-indent-abs indent-code
+syn keyword tl_keyword contained indent-data indent-foff indent-off inhash
+syn keyword tl_keyword contained inlcr ino-t inpck int
+syn keyword tl_keyword contained int-buf int-carray int-chr int-cptr
+syn keyword tl_keyword contained int-flo int-ptr-t int-str int16
+syn keyword tl_keyword contained int32 int64 int8 integerp
+syn keyword tl_keyword contained intern intern-fb interp-fun-p interpose
+syn keyword tl_keyword contained intmax-t inv-cum-norm invoke-catch ip
+syn keyword tl_keyword contained ipf ipproto-ip ipproto-ipv6 ipproto-tcp
+syn keyword tl_keyword contained ipproto-udp ipv6-join-group ipv6-leave-group ipv6-multicast-hops
+syn keyword tl_keyword contained ipv6-multicast-if ipv6-multicast-loop ipv6-unicast-hops ipv6-v6only
+syn keyword tl_keyword contained iread isatty isec isecp
+syn keyword tl_keyword contained isig isqrt istrip iter-begin
+syn keyword tl_keyword contained iter-cat iter-item iter-more iter-reset
+syn keyword tl_keyword contained iter-step iterable iterp itimer-prof
+syn keyword tl_keyword contained itimer-real itimer-virtual iuclc iutf8
+syn keyword tl_keyword contained ixany ixoff ixon j0
+syn keyword tl_keyword contained j1 jmp-buf jn join
+syn keyword tl_keyword contained join-with json juxt keep
+syn keyword tl_keyword contained keep-if keep-if* keep-keys-if keep-match-case-products
+syn keyword tl_keyword contained keep-match-cases keep-match-products keep-matches keepq
+syn keyword tl_keyword contained keepql keepqual key key-t
+syn keyword tl_keyword contained keyword-package keywordp kill labels
+syn keyword tl_keyword contained lambda lambda-match last lazy-str
+syn keyword tl_keyword contained lazy-str-force lazy-str-force-upto lazy-str-get-trailing-list lazy-stream-cons
+syn keyword tl_keyword contained lazy-stringp lchown lcm lcons
+syn keyword tl_keyword contained lcons-car lcons-cdr lcons-force lcons-fun
+syn keyword tl_keyword contained lconsp ldexp ldiff ldo
+syn keyword tl_keyword contained le-double le-float le-int16 le-int32
+syn keyword tl_keyword contained le-int64 le-uint16 le-uint32 le-uint64
+syn keyword tl_keyword contained left len length length-<
+syn keyword tl_keyword contained length-buf length-carray length-list length-list-<
+syn keyword tl_keyword contained length-str length-str-< length-str-<= length-str->
+syn keyword tl_keyword contained length-str->= length-vec lequal less
+syn keyword tl_keyword contained let let* letrec lexical-binding-kind
+syn keyword tl_keyword contained lexical-fun-binding-kind lexical-fun-p lexical-lisp1-binding lexical-macro-p
+syn keyword tl_keyword contained lexical-symacro-p lexical-var-p lflow lgamma
+syn keyword tl_keyword contained lib-version link lisp-parse list
+syn keyword tl_keyword contained list* list-carray list-seq list-str
+syn keyword tl_keyword contained list-vec list-vector listp lnew
+syn keyword tl_keyword contained lnew* load load-args-process load-args-recurse
+syn keyword tl_keyword contained load-for load-time loand loff-t
+syn keyword tl_keyword contained log log-alert log-auth log-authpriv
+syn keyword tl_keyword contained log-cons log-crit log-daemon log-debug
+syn keyword tl_keyword contained log-emerg log-err log-info log-ndelay
+syn keyword tl_keyword contained log-notice log-nowait log-odelay log-perror
+syn keyword tl_keyword contained log-pid log-user log-warning log10
+syn keyword tl_keyword contained log1p log2 logand logb
+syn keyword tl_keyword contained logcount logior lognot logtest
+syn keyword tl_keyword contained logtrunc logxor long long-suffix
+syn keyword tl_keyword contained longjmp longlong lop lop1
+syn keyword tl_keyword contained lopf lopip lset lstat
+syn keyword tl_keyword contained lutimes m$ m^ m^$
+syn keyword tl_keyword contained mac-env-param-bind mac-param-bind macro-ancestor macro-form-p
+syn keyword tl_keyword contained macro-time macroexpand macroexpand-1 macroexpand-1-lisp1
+syn keyword tl_keyword contained macroexpand-1-place macroexpand-lisp1 macroexpand-match macroexpand-params
+syn keyword tl_keyword contained macroexpand-place macroexpand-struct-clause madv-dodump madv-dofork
syn keyword tl_keyword contained madv-dontdump madv-dontfork madv-dontneed madv-free
syn keyword tl_keyword contained madv-hugepage madv-hwpoison madv-keeponfork madv-mergeable
syn keyword tl_keyword contained madv-nohugepage madv-normal madv-random madv-remove
@@ -420,158 +427,159 @@ syn keyword tl_keyword contained mkdir mkdtemp mkfifo mknod
syn keyword tl_keyword contained mkstemp mkstring mlet mmakunbound
syn keyword tl_keyword contained mmap mod mode-t mprotect
syn keyword tl_keyword contained mref ms-async ms-invalidate ms-sync
-syn keyword tl_keyword contained msync mul-each mul-each* mul-each-prod
-syn keyword tl_keyword contained mul-each-prod* multi multi-sort munmap
-syn keyword tl_keyword contained n-choose-k n-perm-k nand nandf
-syn keyword tl_keyword contained nconc nearbyint neg neq
-syn keyword tl_keyword contained neql nequal nested-vec nested-vec-of
-syn keyword tl_keyword contained new new* nexpand-left nextafter
-syn keyword tl_keyword contained nil nilf ninth nl0
-syn keyword tl_keyword contained nl1 nldly nlink-t noflsh
-syn keyword tl_keyword contained none nor norf not
-syn keyword tl_keyword contained notf nreconc nreverse nrot
-syn keyword tl_keyword contained nshuffle nsort nth nthcdr
-syn keyword tl_keyword contained nthlast null nullify num-chr
-syn keyword tl_keyword contained num-str numberp nzerop o-accmode
-syn keyword tl_keyword contained o-append o-async o-cloexec o-creat
-syn keyword tl_keyword contained o-direct o-directory o-noatime o-noctty
-syn keyword tl_keyword contained o-nofollow o-nonblock o-path o-rdonly
-syn keyword tl_keyword contained o-rdwr o-sync o-trunc o-wronly
-syn keyword tl_keyword contained oand obtain obtain* obtain*-block
-syn keyword tl_keyword contained obtain-block ocrnl oddp ofdel
-syn keyword tl_keyword contained off-t offsetof ofill olcuc
-syn keyword tl_keyword contained onlcr onlret onocr op
-syn keyword tl_keyword contained open-command open-directory open-file open-fileno
-syn keyword tl_keyword contained open-files open-files* open-pipe open-process
-syn keyword tl_keyword contained open-socket open-socket-pair open-subprocess open-tail
-syn keyword tl_keyword contained opendir openlog opf opip
-syn keyword tl_keyword contained opost opt opthelp opthelp-conventions
-syn keyword tl_keyword contained opthelp-types or orf pack
-syn keyword tl_keyword contained package-alist package-fallback-list package-foreign-symbols package-local-symbols
-syn keyword tl_keyword contained package-name package-symbols packagep pad
-syn keyword tl_keyword contained page-size pairlis parenb parmrk
-syn keyword tl_keyword contained parodd parse-errors parse-infix partition
-syn keyword tl_keyword contained partition* partition-by partition-if path-blkdev-p
-syn keyword tl_keyword contained path-cat path-chrdev-p path-components-safe path-dir-empty
-syn keyword tl_keyword contained path-dir-p path-equal path-executable-to-me-p path-exists-p
-syn keyword tl_keyword contained path-file-p path-mine-p path-my-group-p path-newer
-syn keyword tl_keyword contained path-older path-pipe-p path-private-to-me-p path-read-writable-to-me-p
-syn keyword tl_keyword contained path-readable-to-me-p path-safe-sticky-dir path-same-object path-search
-syn keyword tl_keyword contained path-sep-chars path-setgid-p path-setuid-p path-sock-p
-syn keyword tl_keyword contained path-sticky-p path-strictly-private-to-me-p path-symlink-p path-writable-to-me-p
-syn keyword tl_keyword contained pdec pendin perm permi
-syn keyword tl_keyword contained pic pid-t pinc pipe
-syn keyword tl_keyword contained place-form-p placelet placelet* plist-to-alist
-syn keyword tl_keyword contained plusp poll poll-err poll-in
-syn keyword tl_keyword contained poll-nval poll-out poll-pri poll-rdband
-syn keyword tl_keyword contained poll-rdhup poll-wrband poly pop
-syn keyword tl_keyword contained pop-after-load portable-abs-path-p pos pos-if
-syn keyword tl_keyword contained pos-max pos-min posq posql
-syn keyword tl_keyword contained posqual pppred ppred pprinl
-syn keyword tl_keyword contained pprint pprof pred prinl
-syn keyword tl_keyword contained print prod prof prog
-syn keyword tl_keyword contained prog* prog1 prog2 progn
-syn keyword tl_keyword contained progv promisep prop proper-list-p
-syn keyword tl_keyword contained proper-listp prot-exec prot-growsdown prot-growsup
-syn keyword tl_keyword contained prot-none prot-read prot-write pset
-syn keyword tl_keyword contained ptr ptr-in ptr-in-d ptr-out
-syn keyword tl_keyword contained ptr-out-d ptr-out-s ptrdiff-t pub:txr-sym
-syn keyword tl_keyword contained pure-rel-path-p purge-deferred-warning push push-after-load
-syn keyword tl_keyword contained pushhash pushnew put-buf put-byte
-syn keyword tl_keyword contained put-carray put-char put-csv put-json
-syn keyword tl_keyword contained put-jsonl put-jsons put-line put-lines
-syn keyword tl_keyword contained put-obj put-string put-strings pwd
-syn keyword tl_keyword contained qquote qref quantile quip
-syn keyword tl_keyword contained quote r$ r^ r^$
-syn keyword tl_keyword contained raise rand random random-buf
-syn keyword tl_keyword contained random-fixnum random-float random-float-incl random-sample
-syn keyword tl_keyword contained random-state-get-vec random-state-p range range*
-syn keyword tl_keyword contained range-regex rangep rangeref rassoc
-syn keyword tl_keyword contained rassq rassql rcomb rcombi
-syn keyword tl_keyword contained rcons read read-objects read-once
-syn keyword tl_keyword contained read-until-match readdir readlink real-time-stream-p
-syn keyword tl_keyword contained realpath record-adapter reduce-left reduce-right
-syn keyword tl_keyword contained ref refset regex-compile regex-from-trie
-syn keyword tl_keyword contained regex-optimize regex-parse regex-prefix-match regex-source
-syn keyword tl_keyword contained regexp register-exception-subtypes register-tentative-def regsub
-syn keyword tl_keyword contained rehome-sym reject rel-path relate
-syn keyword tl_keyword contained release-deferred-warnings remainder remhash remove
-syn keyword tl_keyword contained remove-if remove-if* remove-path remove-path-rec
-syn keyword tl_keyword contained remq remq* remql remql*
-syn keyword tl_keyword contained remqual remqual* rename-path repeat
-syn keyword tl_keyword contained replace replace-buf replace-env replace-list
-syn keyword tl_keyword contained replace-str replace-struct replace-tree-iter replace-vec
-syn keyword tl_keyword contained reset-struct rest ret retf
-syn keyword tl_keyword contained return return* return-from revappend
-syn keyword tl_keyword contained reverse rfind rfind-if right
-syn keyword tl_keyword contained rint rlcp rlcp-tree rlet
-syn keyword tl_keyword contained rlim-infinity rlim-saved-cur rlim-saved-max rlimit-as
-syn keyword tl_keyword contained rlimit-core rlimit-cpu rlimit-data rlimit-fsize
-syn keyword tl_keyword contained rlimit-nofile rlimit-stack rlink rlist
-syn keyword tl_keyword contained rlist* rmdir rmember rmember-if
-syn keyword tl_keyword contained rmemq rmemql rmemqual rmismatch
-syn keyword tl_keyword contained rot rotate round round-rem
-syn keyword tl_keyword contained rperm rpermi rplaca rplacd
-syn keyword tl_keyword contained rpoly rpos rpos-if rposq
-syn keyword tl_keyword contained rposql rposqual rr rra
-syn keyword tl_keyword contained rsearch rslot rtld-deepbind rtld-global
-syn keyword tl_keyword contained rtld-lazy rtld-local rtld-nodelete rtld-noload
-syn keyword tl_keyword contained rtld-now run s-ifblk s-ifchr
-syn keyword tl_keyword contained s-ifdir s-ififo s-iflnk s-ifmt
-syn keyword tl_keyword contained s-ifreg s-ifsock s-irgrp s-iroth
-syn keyword tl_keyword contained s-irusr s-irwxg s-irwxo s-irwxu
-syn keyword tl_keyword contained s-isgid s-isuid s-isvtx s-iwgrp
-syn keyword tl_keyword contained s-iwoth s-iwusr s-ixgrp s-ixoth
-syn keyword tl_keyword contained s-ixusr save-exe sbit scalb
-syn keyword tl_keyword contained scalbln scan-until-match search search-all
-syn keyword tl_keyword contained search-regex search-regst search-str search-str-tree
-syn keyword tl_keyword contained second seek-cur seek-end seek-set
-syn keyword tl_keyword contained seek-stream select self-load-path self-path
-syn keyword tl_keyword contained separate separate-keys seq-begin seq-like
-syn keyword tl_keyword contained seq-next seq-reset seqp set
-syn keyword tl_keyword contained set-diff set-hash-userdata set-indent set-indent-mode
-syn keyword tl_keyword contained set-key set-left set-mask set-max-depth
-syn keyword tl_keyword contained set-max-length set-package-fallback-list set-right set-sig-handler
-syn keyword tl_keyword contained set-stack-limit setegid setenv seteuid
-syn keyword tl_keyword contained setgid setgrent setgroups sethash
-syn keyword tl_keyword contained setitimer setjmp setlogmask setpwent
-syn keyword tl_keyword contained setresgid setresuid setrlimit setuid
-syn keyword tl_keyword contained seventh sh sh-esc sh-esc-all
-syn keyword tl_keyword contained sh-esc-dq sh-esc-sq sha1 sha1-begin
-syn keyword tl_keyword contained sha1-end sha1-hash sha1-stream sha256
-syn keyword tl_keyword contained sha256-begin sha256-end sha256-hash sha256-stream
-syn keyword tl_keyword contained shift short short-suffix shuffle
-syn keyword tl_keyword contained shut-rd shut-rdwr shut-wr sig-abrt
-syn keyword tl_keyword contained sig-alrm sig-atomic-t sig-bus sig-check
-syn keyword tl_keyword contained sig-chld sig-cont sig-fpe sig-hup
-syn keyword tl_keyword contained sig-ill sig-int sig-io sig-iot
-syn keyword tl_keyword contained sig-kill sig-pipe sig-poll sig-prof
-syn keyword tl_keyword contained sig-pwr sig-quit sig-segv sig-stkflt
-syn keyword tl_keyword contained sig-stop sig-sys sig-term sig-trap
-syn keyword tl_keyword contained sig-tstp sig-ttin sig-ttou sig-urg
-syn keyword tl_keyword contained sig-usr1 sig-usr2 sig-vtalrm sig-winch
-syn keyword tl_keyword contained sig-xcpu sig-xfsz sign-extend significand
-syn keyword tl_keyword contained signum sin sinh sixth
-syn keyword tl_keyword contained size-t size-vec sizeof slet
-syn keyword tl_keyword contained slot slotp slots slotset
-syn keyword tl_keyword contained snsort so-acceptconn so-broadcast so-debug
-syn keyword tl_keyword contained so-dontroute so-error so-keepalive so-linger
-syn keyword tl_keyword contained so-oobinline so-rcvbuf so-rcvlowat so-rcvtimeo
-syn keyword tl_keyword contained so-reuseaddr so-sndbuf so-sndlowat so-sndtimeo
-syn keyword tl_keyword contained so-type sock-accept sock-bind sock-cloexec
-syn keyword tl_keyword contained sock-connect sock-dgram sock-family sock-listen
-syn keyword tl_keyword contained sock-nonblock sock-opt sock-peer sock-recv-timeout
-syn keyword tl_keyword contained sock-send-timeout sock-set-opt sock-set-peer sock-shutdown
-syn keyword tl_keyword contained sock-stream sock-type sockaddr-str socklen-t
-syn keyword tl_keyword contained sol-socket some some-false some-true
-syn keyword tl_keyword contained sort sort-group source-loc source-loc-str
-syn keyword tl_keyword contained span-str special-operator-p special-var-p spl
-syn keyword tl_keyword contained splice split split* split-str
-syn keyword tl_keyword contained split-str-set spln sqrt square
-syn keyword tl_keyword contained ssize-t ssort sspl sssucc
-syn keyword tl_keyword contained ssucc starts-with stat static-slot
-syn keyword tl_keyword contained static-slot-ensure static-slot-home static-slot-p static-slot-set
-syn keyword tl_keyword contained stdlib str str-buf str-d
+syn keyword tl_keyword contained msync mul mul-each mul-each*
+syn keyword tl_keyword contained mul-each-prod mul-each-prod* multi multi-sort
+syn keyword tl_keyword contained munmap n-choose-k n-perm-k nand
+syn keyword tl_keyword contained nandf nconc nearbyint neg
+syn keyword tl_keyword contained neq neql nequal nested-vec
+syn keyword tl_keyword contained nested-vec-of new new* nexpand-left
+syn keyword tl_keyword contained nextafter nil nilf ninth
+syn keyword tl_keyword contained nl0 nl1 nldly nlink-t
+syn keyword tl_keyword contained noexpand noflsh none nor
+syn keyword tl_keyword contained norf not notf nreconc
+syn keyword tl_keyword contained nreverse nrot nshuffle nsort
+syn keyword tl_keyword contained nth nthcdr nthlast null
+syn keyword tl_keyword contained nullify num-chr num-str numberp
+syn keyword tl_keyword contained nzerop o-accmode o-append o-async
+syn keyword tl_keyword contained o-cloexec o-creat o-direct o-directory
+syn keyword tl_keyword contained o-noatime o-noctty o-nofollow o-nonblock
+syn keyword tl_keyword contained o-path o-rdonly o-rdwr o-sync
+syn keyword tl_keyword contained o-trunc o-wronly oand obtain
+syn keyword tl_keyword contained obtain* obtain*-block obtain-block ocrnl
+syn keyword tl_keyword contained oddp ofdel off-t offsetof
+syn keyword tl_keyword contained ofill olcuc onlcr onlret
+syn keyword tl_keyword contained onocr op open-command open-directory
+syn keyword tl_keyword contained open-file open-fileno open-files open-files*
+syn keyword tl_keyword contained open-pipe open-process open-socket open-socket-pair
+syn keyword tl_keyword contained open-subprocess open-tail opendir openlog
+syn keyword tl_keyword contained opf opip opost opt
+syn keyword tl_keyword contained opthelp opthelp-conventions opthelp-types or
+syn keyword tl_keyword contained orf pack package-alist package-fallback-list
+syn keyword tl_keyword contained package-foreign-symbols package-local-symbols package-name package-symbols
+syn keyword tl_keyword contained packagep pad page-size pairlis
+syn keyword tl_keyword contained parenb parmrk parodd parse-errors
+syn keyword tl_keyword contained parse-infix partition partition* partition-by
+syn keyword tl_keyword contained partition-if path-blkdev-p path-cat path-chrdev-p
+syn keyword tl_keyword contained path-components-safe path-dir-empty path-dir-p path-equal
+syn keyword tl_keyword contained path-executable-to-me-p path-exists-p path-file-p path-mine-p
+syn keyword tl_keyword contained path-my-group-p path-newer path-older path-pipe-p
+syn keyword tl_keyword contained path-private-to-me-p path-read-writable-to-me-p path-readable-to-me-p path-safe-sticky-dir
+syn keyword tl_keyword contained path-same-object path-search path-sep-chars path-setgid-p
+syn keyword tl_keyword contained path-setuid-p path-sock-p path-sticky-p path-strictly-private-to-me-p
+syn keyword tl_keyword contained path-symlink-p path-writable-to-me-p pdec pendin
+syn keyword tl_keyword contained perm permi pic pid-t
+syn keyword tl_keyword contained pinc pipe place-form-p placelet
+syn keyword tl_keyword contained placelet* plist-to-alist plusp poll
+syn keyword tl_keyword contained poll-err poll-in poll-nval poll-out
+syn keyword tl_keyword contained poll-pri poll-rdband poll-rdhup poll-wrband
+syn keyword tl_keyword contained poly pop pop-after-load portable-abs-path-p
+syn keyword tl_keyword contained pos pos-if pos-max pos-min
+syn keyword tl_keyword contained posq posql posqual pppred
+syn keyword tl_keyword contained ppred pprinl pprint pprof
+syn keyword tl_keyword contained pred prinl print prod
+syn keyword tl_keyword contained prof prog prog* prog1
+syn keyword tl_keyword contained prog2 progf progn progv
+syn keyword tl_keyword contained promisep prop proper-list-p proper-listp
+syn keyword tl_keyword contained prot-exec prot-growsdown prot-growsup prot-none
+syn keyword tl_keyword contained prot-read prot-write pset ptr
+syn keyword tl_keyword contained ptr-in ptr-in-d ptr-out ptr-out-d
+syn keyword tl_keyword contained ptr-out-s ptrdiff-t pub:txr-sym pure-rel-path-p
+syn keyword tl_keyword contained purge-deferred-warning push push-after-load pushhash
+syn keyword tl_keyword contained pushnew put-buf put-byte put-carray
+syn keyword tl_keyword contained put-char put-csv put-json put-jsonl
+syn keyword tl_keyword contained put-jsons put-line put-lines put-obj
+syn keyword tl_keyword contained put-string put-strings pwd qquote
+syn keyword tl_keyword contained qref quantile quip quote
+syn keyword tl_keyword contained r$ r^ r^$ raise
+syn keyword tl_keyword contained rand random random-buf random-fixnum
+syn keyword tl_keyword contained random-float random-float-incl random-sample random-state-get-vec
+syn keyword tl_keyword contained random-state-p range range* range-regex
+syn keyword tl_keyword contained rangep rangeref rassoc rassq
+syn keyword tl_keyword contained rassql rcomb rcombi rcons
+syn keyword tl_keyword contained read read-objects read-once read-until-match
+syn keyword tl_keyword contained readdir readlink real-time-stream-p realpath
+syn keyword tl_keyword contained record-adapter reduce-left reduce-right ref
+syn keyword tl_keyword contained refset regex-compile regex-from-trie regex-optimize
+syn keyword tl_keyword contained regex-parse regex-prefix-match regex-source regexp
+syn keyword tl_keyword contained register-exception-subtypes register-tentative-def regsub rehome-sym
+syn keyword tl_keyword contained reject rel-path relate release-deferred-warnings
+syn keyword tl_keyword contained remainder remhash remove remove-if
+syn keyword tl_keyword contained remove-if* remove-path remove-path-rec remq
+syn keyword tl_keyword contained remq* remql remql* remqual
+syn keyword tl_keyword contained remqual* rename-path repeat replace
+syn keyword tl_keyword contained replace-buf replace-env replace-list replace-str
+syn keyword tl_keyword contained replace-struct replace-tree-iter replace-vec reset-struct
+syn keyword tl_keyword contained rest ret retf return
+syn keyword tl_keyword contained return* return-from revappend reverse
+syn keyword tl_keyword contained rfind rfind-if right rint
+syn keyword tl_keyword contained rlcp rlcp-tree rlet rlim-infinity
+syn keyword tl_keyword contained rlim-saved-cur rlim-saved-max rlimit-as rlimit-core
+syn keyword tl_keyword contained rlimit-cpu rlimit-data rlimit-fsize rlimit-nofile
+syn keyword tl_keyword contained rlimit-stack rlink rlist rlist*
+syn keyword tl_keyword contained rmdir rmember rmember-if rmemq
+syn keyword tl_keyword contained rmemql rmemqual rmismatch rot
+syn keyword tl_keyword contained rotate round round-rem rperm
+syn keyword tl_keyword contained rpermi rplaca rplacd rpoly
+syn keyword tl_keyword contained rpos rpos-if rposq rposql
+syn keyword tl_keyword contained rposqual rr rra rsearch
+syn keyword tl_keyword contained rslot rtld-deepbind rtld-global rtld-lazy
+syn keyword tl_keyword contained rtld-local rtld-nodelete rtld-noload rtld-now
+syn keyword tl_keyword contained run s-ifblk s-ifchr s-ifdir
+syn keyword tl_keyword contained s-ififo s-iflnk s-ifmt s-ifreg
+syn keyword tl_keyword contained s-ifsock s-irgrp s-iroth s-irusr
+syn keyword tl_keyword contained s-irwxg s-irwxo s-irwxu s-isgid
+syn keyword tl_keyword contained s-isuid s-isvtx s-iwgrp s-iwoth
+syn keyword tl_keyword contained s-iwusr s-ixgrp s-ixoth s-ixusr
+syn keyword tl_keyword contained save-exe sbit scalb scalbln
+syn keyword tl_keyword contained scan-until-match search search-all search-regex
+syn keyword tl_keyword contained search-regst search-str search-str-tree second
+syn keyword tl_keyword contained seek-cur seek-end seek-set seek-stream
+syn keyword tl_keyword contained select self-load-path self-path separate
+syn keyword tl_keyword contained separate-keys seq-begin seq-like seq-next
+syn keyword tl_keyword contained seq-reset seqp set set-diff
+syn keyword tl_keyword contained set-hash-userdata set-indent set-indent-mode set-key
+syn keyword tl_keyword contained set-left set-mask set-max-depth set-max-length
+syn keyword tl_keyword contained set-package-fallback-list set-right set-sig-handler set-stack-limit
+syn keyword tl_keyword contained setegid setenv seteuid setgid
+syn keyword tl_keyword contained setgrent setgroups sethash setitimer
+syn keyword tl_keyword contained setjmp setlogmask setpwent setresgid
+syn keyword tl_keyword contained setresuid setrlimit setuid seventh
+syn keyword tl_keyword contained sh sh-esc sh-esc-all sh-esc-dq
+syn keyword tl_keyword contained sh-esc-sq sha1 sha1-begin sha1-end
+syn keyword tl_keyword contained sha1-hash sha1-stream sha256 sha256-begin
+syn keyword tl_keyword contained sha256-end sha256-hash sha256-stream shift
+syn keyword tl_keyword contained short short-suffix shuffle shut-rd
+syn keyword tl_keyword contained shut-rdwr shut-wr sig-abrt sig-alrm
+syn keyword tl_keyword contained sig-atomic-t sig-bus sig-check sig-chld
+syn keyword tl_keyword contained sig-cont sig-fpe sig-hup sig-ill
+syn keyword tl_keyword contained sig-int sig-io sig-iot sig-kill
+syn keyword tl_keyword contained sig-pipe sig-poll sig-prof sig-pwr
+syn keyword tl_keyword contained sig-quit sig-segv sig-stkflt sig-stop
+syn keyword tl_keyword contained sig-sys sig-term sig-trap sig-tstp
+syn keyword tl_keyword contained sig-ttin sig-ttou sig-urg sig-usr1
+syn keyword tl_keyword contained sig-usr2 sig-vtalrm sig-winch sig-xcpu
+syn keyword tl_keyword contained sig-xfsz sign-extend significand signum
+syn keyword tl_keyword contained sin sinh sixth size-t
+syn keyword tl_keyword contained size-vec sizeof slet slot
+syn keyword tl_keyword contained slotp slots slotset snsort
+syn keyword tl_keyword contained so-acceptconn so-broadcast so-debug so-dontroute
+syn keyword tl_keyword contained so-error so-keepalive so-linger so-oobinline
+syn keyword tl_keyword contained so-rcvbuf so-rcvlowat so-rcvtimeo so-reuseaddr
+syn keyword tl_keyword contained so-sndbuf so-sndlowat so-sndtimeo so-type
+syn keyword tl_keyword contained sock-accept sock-bind sock-cloexec sock-connect
+syn keyword tl_keyword contained sock-dgram sock-family sock-listen sock-nonblock
+syn keyword tl_keyword contained sock-opt sock-peer sock-recv-timeout sock-send-timeout
+syn keyword tl_keyword contained sock-set-opt sock-set-peer sock-shutdown sock-stream
+syn keyword tl_keyword contained sock-type sockaddr-str socklen-t sol-socket
+syn keyword tl_keyword contained some some-false some-true sort
+syn keyword tl_keyword contained sort-group source-loc source-loc-str span-str
+syn keyword tl_keyword contained special-operator-p special-var-p spl split
+syn keyword tl_keyword contained split* split-str split-str-set spln
+syn keyword tl_keyword contained sqrt square ssize-t ssort
+syn keyword tl_keyword contained sspl sssucc ssucc starts-with
+syn keyword tl_keyword contained stat static-slot static-slot-ensure static-slot-home
+syn keyword tl_keyword contained static-slot-p static-slot-set stdlib str
+syn keyword tl_keyword contained str-buf str-compress str-d str-decompress
syn keyword tl_keyword contained str-esc str-in6addr str-in6addr-net str-inaddr
syn keyword tl_keyword contained str-inaddr-net str-s str-seq str<
syn keyword tl_keyword contained str<= str= str> str>=
@@ -585,27 +593,28 @@ syn keyword tl_keyword contained sub-list sub-str sub-tree sub-vec
syn keyword tl_keyword contained subq subql subqual subst
syn keyword tl_keyword contained subtypep succ sum sum-each
syn keyword tl_keyword contained sum-each* sum-each-prod sum-each-prod* super
-syn keyword tl_keyword contained super-method suspend swap symacrolet
-syn keyword tl_keyword contained symbol-function symbol-macro symbol-name symbol-package
-syn keyword tl_keyword contained symbol-value symbolp symdiff symlink
-syn keyword tl_keyword contained sys:%backpatch-high16% sys:%backpatch-low16% sys:%big-endian% sys:%bin-op%
-syn keyword tl_keyword contained sys:%bin-ops% sys:%block-using-funs% sys:%call-op% sys:%const-foldable%
-syn keyword tl_keyword contained sys:%const-foldable-funs% sys:%dbg-command-env% sys:%dbg-commands% sys:%effect-free%
-syn keyword tl_keyword contained sys:%effect-free-funs% sys:%eval-cache% sys:%functional% sys:%functional-funs%
-syn keyword tl_keyword contained sys:%gcall-op% sys:%lev-bits% sys:%lev-size% sys:%max-lambda-fixed-args%
-syn keyword tl_keyword contained sys:%max-lev% sys:%max-lev-idx% sys:%max-sm-lev% sys:%max-sm-lev-idx%
-syn keyword tl_keyword contained sys:%max-v-lev% sys:%nary-ops% sys:%oc-code% sys:%oc-hash%
-syn keyword tl_keyword contained sys:%oc-list-builder% sys:%package-manip% sys:%param-info% sys:%quip-rand-state%
-syn keyword tl_keyword contained sys:%quips% sys:%shuffled-quips% sys:%sm-lev-bits% sys:%sm-lev-size%
-syn keyword tl_keyword contained sys:%test-funs% sys:%test-funs-neg% sys:%test-funs-ops% sys:%test-funs-pos%
-syn keyword tl_keyword contained sys:%test-inv% sys:%test-opcode% sys:%tlo-ver% sys:%warning-syms%
-syn keyword tl_keyword contained sys:*dedup* sys:*emit* sys:*eval* sys:*in-compilation-unit*
+syn keyword tl_keyword contained super-method suspend swap symbol-function
+syn keyword tl_keyword contained symbol-macro symbol-name symbol-package symbol-value
+syn keyword tl_keyword contained symbolp symdiff symlink sys:%backpatch-high16%
+syn keyword tl_keyword contained sys:%backpatch-low16% sys:%big-endian% sys:%bin-op% sys:%bin-ops%
+syn keyword tl_keyword contained sys:%block-using-funs% sys:%call-op% sys:%const-foldable% sys:%const-foldable-funs%
+syn keyword tl_keyword contained sys:%dbg-command-env% sys:%dbg-commands% sys:%effect-free% sys:%effect-free-funs%
+syn keyword tl_keyword contained sys:%eval-cache% sys:%functional% sys:%functional-funs% sys:%gcall-op%
+syn keyword tl_keyword contained sys:%lev-bits% sys:%lev-size% sys:%max-lambda-fixed-args% sys:%max-lev%
+syn keyword tl_keyword contained sys:%max-lev-idx% sys:%max-sm-lev% sys:%max-sm-lev-idx% sys:%max-v-lev%
+syn keyword tl_keyword contained sys:%nary-ops% sys:%oc-code% sys:%oc-hash% sys:%oc-list-builder%
+syn keyword tl_keyword contained sys:%package-manip% sys:%param-info% sys:%quip-rand-state% sys:%quips%
+syn keyword tl_keyword contained sys:%shuffled-quips% sys:%sm-lev-bits% sys:%sm-lev-size% sys:%test-funs%
+syn keyword tl_keyword contained sys:%test-funs-neg% sys:%test-funs-ops% sys:%test-funs-pos% sys:%test-inv%
+syn keyword tl_keyword contained sys:%test-opcode% sys:%tlo-ver% sys:%warning-syms% sys:*dedup*
+syn keyword tl_keyword contained sys:*emit* sys:*eval* sys:*ifx-env* sys:*in-compilation-unit*
syn keyword tl_keyword contained sys:*lazy-streams* sys:*load-recursive* sys:*load-time* sys:*match-form*
syn keyword tl_keyword contained sys:*op-ctx* sys:*pl-env* sys:*pl-form* sys:*struct-prelude*
syn keyword tl_keyword contained sys:*struct-prelude-alists* sys:*top-level* sys:*trace-hash* sys:*trace-level*
syn keyword tl_keyword contained sys:*unchecked-calls* sys:abscond* sys:abscond-from sys:add-neg-parens
-syn keyword tl_keyword contained sys:analyze-argtypes sys:analyze-params sys:apply sys:arith-each
-syn keyword tl_keyword contained sys:asm-error sys:assumed-fun sys:autoload-try-fun sys:awk%--rng
+syn keyword tl_keyword contained sys:analyze-argtypes sys:analyze-params sys:and-set sys:apply
+syn keyword tl_keyword contained sys:arith-each sys:ash-set sys:asm-error sys:asr
+syn keyword tl_keyword contained sys:asr-set sys:assumed-fun sys:autoload-try-fun sys:awk%--rng
syn keyword tl_keyword contained sys:awk%--rng+ sys:awk%--rng- sys:awk%-rng+ sys:awk%rng+
syn keyword tl_keyword contained sys:awk-code-move-check sys:awk-error sys:awk-expander sys:awk-field-name-code
syn keyword tl_keyword contained sys:awk-fun-let sys:awk-fun-shadowing-env sys:awk-mac-let sys:awk-mac-let-outer
@@ -630,143 +639,144 @@ syn keyword tl_keyword contained sys:dbg-enable sys:dbg-restore sys:dbg-set sys:
syn keyword tl_keyword contained sys:debugger sys:debugger-help sys:dedup sys:dedup-labels
syn keyword tl_keyword contained sys:deffi-cb-expander sys:define-method sys:defset-expander sys:defset-expander-simple
syn keyword tl_keyword contained sys:detached-run sys:detect-infix sys:dig sys:disassemble-cdf
-syn keyword tl_keyword contained sys:div sys:dlib-expr sys:do-conv sys:do-copy-obj
-syn keyword tl_keyword contained sys:do-path-test sys:do-tweak-obj sys:dump-to-tlo sys:dvbind
-syn keyword tl_keyword contained sys:dwim-del sys:dwim-set sys:dyn-size sys:each-match-expander
-syn keyword tl_keyword contained sys:each-op sys:early-peephole sys:enc-small-op sys:ensure-op-arg
-syn keyword tl_keyword contained sys:env-to-let sys:eq-comparable sys:eql-comparable sys:eval-cache-emit-warnings
-syn keyword tl_keyword contained sys:eval-err sys:expand-and sys:expand-arith-each-prod sys:expand-bind-mac-params
-syn keyword tl_keyword contained sys:expand-defmacro sys:expand-defsymacro sys:expand-defun sys:expand-defvarl
-syn keyword tl_keyword contained sys:expand-dohash sys:expand-doloop sys:expand-each sys:expand-each-prod
-syn keyword tl_keyword contained sys:expand-each-prod* sys:expand-handle sys:expand-lambda-match sys:expand-neg-parens
-syn keyword tl_keyword contained sys:expand-param-macro sys:expand-params sys:expand-pic sys:expand-pic-align
-syn keyword tl_keyword contained sys:expand-pic-num sys:expand-pic-num-commas sys:expand-quasi sys:expand-quasi-args
-syn keyword tl_keyword contained sys:expand-quasi-match sys:expand-quasi-mods sys:expand-sym-ref sys:expr
-syn keyword tl_keyword contained sys:fbind sys:find-parent sys:fixed-point sys:flatten-or
-syn keyword tl_keyword contained sys:fmt-flex sys:fmt-join sys:fmt-simple sys:for-op
-syn keyword tl_keyword contained sys:gc sys:gc-set-delta sys:get-buf-common sys:get-fun-getter-setter
-syn keyword tl_keyword contained sys:get-mb sys:get-param-info sys:get-place-macro sys:get-var-list
-syn keyword tl_keyword contained sys:get-vars sys:get-vb sys:getopts-error sys:glob-xstar
-syn keyword tl_keyword contained sys:handle-bad-syntax sys:handle-mutated-var-args sys:hlet-expand sys:if-to-cond
-syn keyword tl_keyword contained sys:ifx-ops sys:ifx-uops sys:ign-notfound sys:in6addr-condensed-text
-syn keyword tl_keyword contained sys:infix-error sys:infix-expand-hook sys:inline-chain sys:inline-chain-rec
-syn keyword tl_keyword contained sys:insert-commas sys:is-label sys:l1-setq sys:l1-val
-syn keyword tl_keyword contained sys:lambda-apply-transform sys:lambda-excess-apply-list sys:lambda-short-apply-list sys:lambda-too-few-args
-syn keyword tl_keyword contained sys:lambda-too-many-args sys:lbind sys:lisp1-setq sys:lisp1-value
-syn keyword tl_keyword contained sys:list-builder-flets sys:list-from-vm-desc sys:load-time-lit sys:loc
-syn keyword tl_keyword contained sys:loosen sys:lopip1 sys:mac-env-flatten sys:make-anon-package
-syn keyword tl_keyword contained sys:make-command-env sys:make-copy-path-opts sys:make-struct-lit sys:make-struct-type
-syn keyword tl_keyword contained sys:maproc-common sys:mark-special sys:match-case-to-casequal sys:match-pat-error
-syn keyword tl_keyword contained sys:maybe-mov sys:meth-lambda sys:misleading-ref-check sys:mul
-syn keyword tl_keyword contained sys:name-str sys:new-expander sys:new-type sys:no-dvbind-eval
-syn keyword tl_keyword contained sys:non-triv-pat-p sys:normalize-enum-pairs sys:null-reg sys:obtain-impl
-syn keyword tl_keyword contained sys:op-alpha-rename sys:op-ensure-rec sys:op-expand sys:op-meta-p
-syn keyword tl_keyword contained sys:op-rec-p sys:open-compile-streams sys:open-url sys:operand-to-exp
-syn keyword tl_keyword contained sys:operand-to-sym sys:opip-expand sys:opip-let-p sys:opip-single-let-p
-syn keyword tl_keyword contained sys:opt-controlled-diag sys:opt-dash sys:opt-err sys:orig-form
-syn keyword tl_keyword contained sys:os-symbol sys:param-check sys:parse-compound-operand sys:parse-lambda-match-clause
-syn keyword tl_keyword contained sys:parse-operand sys:pat-len sys:path-access sys:path-examine
-syn keyword tl_keyword contained sys:path-simplify sys:path-split sys:path-test-mode sys:path-test-type
-syn keyword tl_keyword contained sys:path-volume sys:pic-join-opt sys:placelet-1 sys:print-backtrace
-syn keyword tl_keyword contained sys:propagate-ancestor sys:propagate-perms sys:prune-missing-inits sys:put-objects
-syn keyword tl_keyword contained sys:qquote sys:quasi sys:quasilist sys:r-s-let-expander
-syn keyword tl_keyword contained sys:reduce-constant sys:reduce-lisp sys:reduce-or sys:reg-expand-nongreedy
-syn keyword tl_keyword contained sys:register-opcode sys:register-simple-accessor sys:repl sys:rewrite
-syn keyword tl_keyword contained sys:rewrite-case sys:rplaca sys:rplacd sys:rslotset
-syn keyword tl_keyword contained sys:rt-assert-fail sys:rt-defmacro sys:rt-defsymacro sys:rt-defun
-syn keyword tl_keyword contained sys:rt-defv sys:rt-defvarl sys:rt-load-for sys:rt-pprof
-syn keyword tl_keyword contained sys:rt-progv sys:rt-setjmp sys:safe-abs-path sys:safe-const-eval
-syn keyword tl_keyword contained sys:safe-const-reduce sys:safe-constantp sys:set-hash-traversal-limit sys:set-macro-ancestor
-syn keyword tl_keyword contained sys:set-symbol-value sys:setq sys:setqf sys:simplify-or
-syn keyword tl_keyword contained sys:simplify-variadic-lambda sys:slot-types sys:small-op-p sys:small-op-to-sym
-syn keyword tl_keyword contained sys:splice sys:static-slot-types sys:str-inaddr-net-impl sys:struct-lit
-syn keyword tl_keyword contained sys:subst-preserve sys:switch sys:sym-clobber-expander sys:sym-delete-expander
-syn keyword tl_keyword contained sys:sym-update-expander sys:system-symbol-p sys:top-fb sys:top-mb
-syn keyword tl_keyword contained sys:top-vb sys:tr* sys:trace sys:trace-canonicalize-name
-syn keyword tl_keyword contained sys:trace-enter sys:trace-leave sys:trace-redefine-check sys:transform-qquote
-syn keyword tl_keyword contained sys:translate-hash-bang sys:tree-construct sys:trfm sys:true-const-p
-syn keyword tl_keyword contained sys:txr-case-impl sys:typecase-expander sys:unquote sys:untrace
+syn keyword tl_keyword contained sys:dlib-expr sys:do-conv sys:do-copy-obj sys:do-path-test
+syn keyword tl_keyword contained sys:do-tweak-obj sys:dump-to-tlo sys:dvbind sys:dwim-del
+syn keyword tl_keyword contained sys:dwim-set sys:dyn-size sys:each-match-expander sys:each-op
+syn keyword tl_keyword contained sys:early-peephole sys:enc-small-op sys:ensure-op-arg sys:env-to-let
+syn keyword tl_keyword contained sys:eq-comparable sys:eql-comparable sys:eval-cache-emit-warnings sys:eval-err
+syn keyword tl_keyword contained sys:expand-and sys:expand-arith-each-prod sys:expand-bind-mac-params sys:expand-defmacro
+syn keyword tl_keyword contained sys:expand-defsymacro sys:expand-defun sys:expand-defvarl sys:expand-dohash
+syn keyword tl_keyword contained sys:expand-doloop sys:expand-each sys:expand-each-prod sys:expand-each-prod*
+syn keyword tl_keyword contained sys:expand-handle sys:expand-lambda-match sys:expand-neg-parens sys:expand-param-macro
+syn keyword tl_keyword contained sys:expand-params sys:expand-pic sys:expand-pic-align sys:expand-pic-num
+syn keyword tl_keyword contained sys:expand-pic-num-commas sys:expand-quasi sys:expand-quasi-args sys:expand-quasi-match
+syn keyword tl_keyword contained sys:expand-quasi-mods sys:expand-sym-ref sys:fbind sys:find-parent
+syn keyword tl_keyword contained sys:fixed-point sys:flatten-or sys:fmt-flex sys:fmt-flex-fmstr
+syn keyword tl_keyword contained sys:fmt-join sys:fmt-simple sys:fmt-simple-fmstr sys:for-op
+syn keyword tl_keyword contained sys:funp sys:gc sys:gc-set-delta sys:get-buf-common
+syn keyword tl_keyword contained sys:get-fun-getter-setter sys:get-mb sys:get-param-info sys:get-place-macro
+syn keyword tl_keyword contained sys:get-var-list sys:get-vars sys:get-vb sys:getopts-error
+syn keyword tl_keyword contained sys:glob-xstar sys:handle-bad-syntax sys:handle-mutated-var-args sys:hlet-expand
+syn keyword tl_keyword contained sys:hmac-impl sys:if-to-cond sys:ifx-ops sys:ifx-uops
+syn keyword tl_keyword contained sys:ign-notfound sys:in6addr-condensed-text sys:infix-error sys:infix-expand-hook
+syn keyword tl_keyword contained sys:inline-chain sys:inline-chain-rec sys:insert-commas sys:is-label
+syn keyword tl_keyword contained sys:l1-setq sys:l1-val sys:lambda-apply-transform sys:lambda-excess-apply-list
+syn keyword tl_keyword contained sys:lambda-short-apply-list sys:lambda-too-few-args sys:lambda-too-many-args sys:lbind
+syn keyword tl_keyword contained sys:lisp1-setq sys:lisp1-value sys:list-builder-flets sys:list-from-vm-desc
+syn keyword tl_keyword contained sys:load-time-lit sys:loc sys:logand-set sys:logior-set
+syn keyword tl_keyword contained sys:logxor-set sys:loosen sys:lopip1 sys:mac-env-flatten
+syn keyword tl_keyword contained sys:make-anon-package sys:make-command-env sys:make-copy-path-opts sys:make-struct-lit
+syn keyword tl_keyword contained sys:make-struct-type sys:maproc-common sys:mark-special sys:match-case-to-casequal
+syn keyword tl_keyword contained sys:match-pat-error sys:maybe-mov sys:meth-lambda sys:misleading-ref-check
+syn keyword tl_keyword contained sys:mod-set sys:name-str sys:new-expander sys:new-type
+syn keyword tl_keyword contained sys:no-dvbind-eval sys:non-triv-pat-p sys:normalize-enum-pairs sys:null-reg
+syn keyword tl_keyword contained sys:obtain-impl sys:op-alpha-rename sys:op-ensure-rec sys:op-expand
+syn keyword tl_keyword contained sys:op-meta-p sys:op-rec-p sys:open-compile-streams sys:open-url
+syn keyword tl_keyword contained sys:operand-to-exp sys:operand-to-sym sys:opip-expand sys:opip-let-p
+syn keyword tl_keyword contained sys:opip-single-let-p sys:opt-controlled-diag sys:opt-dash sys:opt-err
+syn keyword tl_keyword contained sys:or-set sys:orig-form sys:os-symbol sys:param-check
+syn keyword tl_keyword contained sys:parse-compound-operand sys:parse-lambda-match-clause sys:parse-operand sys:pat-len
+syn keyword tl_keyword contained sys:path-access sys:path-examine sys:path-simplify sys:path-split
+syn keyword tl_keyword contained sys:path-test-mode sys:path-test-type sys:path-volume sys:pic-join-opt
+syn keyword tl_keyword contained sys:placelet-1 sys:print-backtrace sys:propagate-ancestor sys:propagate-perms
+syn keyword tl_keyword contained sys:prune-missing-inits sys:put-objects sys:qquote sys:quasi
+syn keyword tl_keyword contained sys:quasilist sys:r-s-let-expander sys:reduce-constant sys:reduce-lisp
+syn keyword tl_keyword contained sys:reduce-or sys:reg-expand-nongreedy sys:register-opcode sys:register-simple-accessor
+syn keyword tl_keyword contained sys:repl sys:rewrite sys:rewrite-case sys:rplaca
+syn keyword tl_keyword contained sys:rplacd sys:rslotset sys:rt-assert-fail sys:rt-defmacro
+syn keyword tl_keyword contained sys:rt-defsymacro sys:rt-defun sys:rt-defv sys:rt-defvarl
+syn keyword tl_keyword contained sys:rt-load-for sys:rt-pprof sys:rt-progv sys:rt-setjmp
+syn keyword tl_keyword contained sys:safe-abs-path sys:safe-const-eval sys:safe-const-reduce sys:safe-constantp
+syn keyword tl_keyword contained sys:set-hash-traversal-limit sys:set-macro-ancestor sys:set-symbol-value sys:setq
+syn keyword tl_keyword contained sys:setqf sys:simplify-or sys:simplify-variadic-lambda sys:slot-types
+syn keyword tl_keyword contained sys:small-op-p sys:small-op-to-sym sys:static-slot-types sys:str-inaddr-net-impl
+syn keyword tl_keyword contained sys:struct-lit sys:subst-preserve sys:switch sys:sym-clobber-expander
+syn keyword tl_keyword contained sys:sym-delete-expander sys:sym-update-expander sys:system-symbol-p sys:top-fb
+syn keyword tl_keyword contained sys:top-mb sys:top-vb sys:tr* sys:trace
+syn keyword tl_keyword contained sys:trace-canonicalize-name sys:trace-enter sys:trace-leave sys:trace-redefine-check
+syn keyword tl_keyword contained sys:transform-qquote sys:translate-hash-bang sys:tree-construct sys:trfm
+syn keyword tl_keyword contained sys:true-const-p sys:txr-case-impl sys:typecase-expander sys:untrace
syn keyword tl_keyword contained sys:upenv sys:uw-block sys:uw-captured-block sys:uw-catch
syn keyword tl_keyword contained sys:uw-cont-copy sys:uw-eval sys:uw-expand sys:uw-fcall
-syn keyword tl_keyword contained sys:uw-guard sys:uw-handle sys:uw-menv sys:var
-syn keyword tl_keyword contained sys:var-pat-p sys:vars-check sys:vm-closure-desc sys:vm-closure-entry
-syn keyword tl_keyword contained sys:vm-desc-bytecode sys:vm-desc-datavec sys:vm-desc-nlevels sys:vm-desc-nregs
-syn keyword tl_keyword contained sys:vm-desc-symvec sys:vm-execute-toplevel sys:vm-make-desc sys:wdwrap
-syn keyword tl_keyword contained sys:when-exprs-match sys:when-opt sys:with-disabled-debugging sys:with-dyn-lib-check
-syn keyword tl_keyword contained syslog system-package t tab0
-syn keyword tl_keyword contained tab1 tab2 tab3 tabdly
-syn keyword tl_keyword contained tagbody tailp take take-until
-syn keyword tl_keyword contained take-while tan tanh tap
-syn keyword tl_keyword contained tb tc tcdrain tcflow
-syn keyword tl_keyword contained tcflush tcgetattr tciflush tcioff
-syn keyword tl_keyword contained tcioflush tcion tcoflush tcooff
-syn keyword tl_keyword contained tcoon tcp-nodelay tcsadrain tcsaflush
-syn keyword tl_keyword contained tcsanow tcsendbreak tcsetattr tentative-def-exists
-syn keyword tl_keyword contained tenth test-clear test-clear-dirty test-dec
-syn keyword tl_keyword contained test-dirty test-inc test-neq-set-indent-mode test-set
-syn keyword tl_keyword contained test-set-indent-mode tf tgamma third
-syn keyword tl_keyword contained throw throwf time time-fields-local
-syn keyword tl_keyword contained time-fields-utc time-nsec time-parse time-parse-local
-syn keyword tl_keyword contained time-parse-utc time-str-local time-str-utc time-string-local
-syn keyword tl_keyword contained time-string-utc time-struct-local time-struct-utc time-t
-syn keyword tl_keyword contained time-usec tmpfile tnode tnodep
-syn keyword tl_keyword contained to tocsv tofloat tofloatz
-syn keyword tl_keyword contained toint tointz tojson tok
-syn keyword tl_keyword contained tok-str tok-where tokn tostop
-syn keyword tl_keyword contained tostring tostringp touch tprint
-syn keyword tl_keyword contained trace transpose tree tree-begin
-syn keyword tl_keyword contained tree-bind tree-case tree-clear tree-count
-syn keyword tl_keyword contained tree-del-min tree-del-min-node tree-delete tree-delete-node
-syn keyword tl_keyword contained tree-delete-specific-node tree-find tree-insert tree-insert-node
-syn keyword tl_keyword contained tree-lookup tree-lookup-node tree-min tree-min-node
-syn keyword tl_keyword contained tree-next tree-peek tree-reset tree-root
-syn keyword tl_keyword contained treep trie-add trie-compress trie-lookup-begin
-syn keyword tl_keyword contained trie-lookup-feed-char trie-value-at trim-left trim-long-suffix
-syn keyword tl_keyword contained trim-path-seps trim-right trim-short-suffix trim-str
-syn keyword tl_keyword contained true trunc trunc-rem truncate-stream
-syn keyword tl_keyword contained tuples tuples* txr-case txr-exe-path
-syn keyword tl_keyword contained txr-if txr-parse txr-path txr-version
-syn keyword tl_keyword contained txr-when typecase typedef typeof
-syn keyword tl_keyword contained typep ubit uchar uid-t
-syn keyword tl_keyword contained uint uint-buf uint-carray uint-ptr-t
-syn keyword tl_keyword contained uint16 uint32 uint64 uint8
-syn keyword tl_keyword contained uintmax-t ulong ulonglong umask
-syn keyword tl_keyword contained umeth umethod uname unget-byte
-syn keyword tl_keyword contained unget-char uni unintern union
-syn keyword tl_keyword contained union-get union-in union-members union-out
-syn keyword tl_keyword contained union-put uniq unique unless
-syn keyword tl_keyword contained unquote unsetenv until until*
-syn keyword tl_keyword contained untrace unuse-package unuse-sym unwind-protect
-syn keyword tl_keyword contained upcase-str upd update uref
-syn keyword tl_keyword contained url-decode url-encode use use-package
-syn keyword tl_keyword contained use-sym use-sym-as user-package ushort
-syn keyword tl_keyword contained usl usleep uslot utimes
-syn keyword tl_keyword contained val vdiscard vec vec-carray
-syn keyword tl_keyword contained vec-list vec-push vec-seq vec-set-length
-syn keyword tl_keyword contained vecref vector vector-list vectorp
-syn keyword tl_keyword contained veof veol veol2 verase
-syn keyword tl_keyword contained vintr vkill vlnext vm-fun-p
-syn keyword tl_keyword contained vmin void vquit vreprint
-syn keyword tl_keyword contained vstart vstop vsusp vswtc
-syn keyword tl_keyword contained vt0 vt1 vtdly vtime
-syn keyword tl_keyword contained vwerase w-continued w-coredump w-exitstatus
-syn keyword tl_keyword contained w-ifcontinued w-ifexited w-ifsignaled w-ifstopped
-syn keyword tl_keyword contained w-nohang w-stopsig w-termsig w-untraced
-syn keyword tl_keyword contained wait wchar weave when
-syn keyword tl_keyword contained when-match whena whenlet where
-syn keyword tl_keyword contained wheref whereq whereql wherequal
-syn keyword tl_keyword contained while while* while-match while-match-case
-syn keyword tl_keyword contained while-true-match-case whilet width width-check
-syn keyword tl_keyword contained window-map window-mapdo window-mappend wint-t
-syn keyword tl_keyword contained with-clobber-expander with-compilation-unit with-compile-opts with-delete-expander
-syn keyword tl_keyword contained with-dyn-lib with-gensyms with-hash-iter with-in-buf-stream
-syn keyword tl_keyword contained with-in-string-byte-stream with-in-string-stream with-objects with-out-buf-stream
-syn keyword tl_keyword contained with-out-string-stream with-out-strlist-stream with-resources with-slots
-syn keyword tl_keyword contained with-stream with-update-expander wrap wrap*
-syn keyword tl_keyword contained wstr wstr-d wstr-s xcase
-syn keyword tl_keyword contained y0 y1 yield yield-from
-syn keyword tl_keyword contained yn zap zarray zchar
-syn keyword tl_keyword contained zero-fill zerop zip znew
+syn keyword tl_keyword contained sys:uw-guard sys:uw-handle sys:uw-menv sys:var-pat-p
+syn keyword tl_keyword contained sys:vars-check sys:vm-closure-desc sys:vm-closure-entry sys:vm-desc-bytecode
+syn keyword tl_keyword contained sys:vm-desc-datavec sys:vm-desc-nlevels sys:vm-desc-nregs sys:vm-desc-symvec
+syn keyword tl_keyword contained sys:vm-execute-toplevel sys:vm-make-desc sys:wdwrap sys:when-opt
+syn keyword tl_keyword contained sys:with-disabled-debugging sys:with-dyn-lib-check syslog system-package
+syn keyword tl_keyword contained t tab0 tab1 tab2
+syn keyword tl_keyword contained tab3 tabdly tagbody tailp
+syn keyword tl_keyword contained take take-until take-while tan
+syn keyword tl_keyword contained tanh tap tb tc
+syn keyword tl_keyword contained tcdrain tcflow tcflush tcgetattr
+syn keyword tl_keyword contained tciflush tcioff tcioflush tcion
+syn keyword tl_keyword contained tcoflush tcooff tcoon tcp-nodelay
+syn keyword tl_keyword contained tcsadrain tcsaflush tcsanow tcsendbreak
+syn keyword tl_keyword contained tcsetattr tentative-def-exists tenth test-clear
+syn keyword tl_keyword contained test-clear-dirty test-dec test-dirty test-inc
+syn keyword tl_keyword contained test-neq-set-indent-mode test-set test-set-indent-mode tf
+syn keyword tl_keyword contained tgamma third throw throwf
+syn keyword tl_keyword contained time time-fields-local time-fields-utc time-nsec
+syn keyword tl_keyword contained time-parse time-parse-local time-parse-utc time-str-local
+syn keyword tl_keyword contained time-str-utc time-string-local time-string-utc time-struct-local
+syn keyword tl_keyword contained time-struct-utc time-t time-usec tmpfile
+syn keyword tl_keyword contained tnode tnodep to tocsv
+syn keyword tl_keyword contained tofloat tofloatz toint tointz
+syn keyword tl_keyword contained tojson tok tok-str tok-where
+syn keyword tl_keyword contained tokn tostop tostring tostringp
+syn keyword tl_keyword contained touch tprint trace transpose
+syn keyword tl_keyword contained tree tree-begin tree-bind tree-case
+syn keyword tl_keyword contained tree-clear tree-count tree-del-min tree-del-min-node
+syn keyword tl_keyword contained tree-delete tree-delete-node tree-delete-specific-node tree-find
+syn keyword tl_keyword contained tree-insert tree-insert-node tree-lookup tree-lookup-node
+syn keyword tl_keyword contained tree-min tree-min-node tree-next tree-peek
+syn keyword tl_keyword contained tree-reset tree-root treep trie-add
+syn keyword tl_keyword contained trie-compress trie-lookup-begin trie-lookup-feed-char trie-value-at
+syn keyword tl_keyword contained trim-left trim-long-suffix trim-path-seps trim-right
+syn keyword tl_keyword contained trim-short-suffix trim-str true trunc
+syn keyword tl_keyword contained trunc-rem truncate-stream tuples tuples*
+syn keyword tl_keyword contained txr-case txr-exe-path txr-if txr-parse
+syn keyword tl_keyword contained txr-path txr-version txr-when typecase
+syn keyword tl_keyword contained typedef typeof typep ubit
+syn keyword tl_keyword contained uchar uid-t uint uint-buf
+syn keyword tl_keyword contained uint-carray uint-ptr-t uint16 uint32
+syn keyword tl_keyword contained uint64 uint8 uintmax-t ulong
+syn keyword tl_keyword contained ulonglong umask umeth umethod
+syn keyword tl_keyword contained uname unget-byte unget-char uni
+syn keyword tl_keyword contained unintern union union-get union-in
+syn keyword tl_keyword contained union-members union-out union-put uniq
+syn keyword tl_keyword contained unique unless unsetenv until
+syn keyword tl_keyword contained until* untrace unuse-package unuse-sym
+syn keyword tl_keyword contained unwind-protect upcase-str upd update
+syn keyword tl_keyword contained uref url-decode url-encode use
+syn keyword tl_keyword contained use-package use-sym use-sym-as user-package
+syn keyword tl_keyword contained ushort usl usleep uslot
+syn keyword tl_keyword contained utimes val vdiscard vec
+syn keyword tl_keyword contained vec-carray vec-list vec-push vec-seq
+syn keyword tl_keyword contained vec-set-length vecref vector vector-list
+syn keyword tl_keyword contained vectorp veof veol veol2
+syn keyword tl_keyword contained verase vintr vkill vlnext
+syn keyword tl_keyword contained vm-fun-p vmin void vquit
+syn keyword tl_keyword contained vreprint vstart vstop vsusp
+syn keyword tl_keyword contained vswtc vt0 vt1 vtdly
+syn keyword tl_keyword contained vtime vwerase w-continued w-coredump
+syn keyword tl_keyword contained w-exitstatus w-ifcontinued w-ifexited w-ifsignaled
+syn keyword tl_keyword contained w-ifstopped w-nohang w-stopsig w-termsig
+syn keyword tl_keyword contained w-untraced wait wchar weave
+syn keyword tl_keyword contained when when-match whena whenlet
+syn keyword tl_keyword contained where wheref whereq whereql
+syn keyword tl_keyword contained wherequal while while* while-match
+syn keyword tl_keyword contained while-match-case while-true-match-case whilet width
+syn keyword tl_keyword contained width-check window-map window-mapdo window-mappend
+syn keyword tl_keyword contained wint-t with-clobber-expander with-compilation-unit with-compile-opts
+syn keyword tl_keyword contained with-delete-expander with-dyn-lib with-gensyms with-hash-iter
+syn keyword tl_keyword contained with-in-buf-stream with-in-string-byte-stream with-in-string-stream with-objects
+syn keyword tl_keyword contained with-out-buf-stream with-out-string-stream with-out-strlist-stream with-resources
+syn keyword tl_keyword contained with-slots with-stream with-update-expander wrap
+syn keyword tl_keyword contained wrap* wstr wstr-d wstr-s
+syn keyword tl_keyword contained xcase y0 y1 yield
+syn keyword tl_keyword contained yield-from yn zap zarray
+syn keyword tl_keyword contained zchar zero-fill zerop zip
+syn keyword tl_keyword contained znew
syn match txr_nested_error "[^\t ]\+" contained
syn match txr_variable "[*]\?[ \t]*[A-Za-z_][A-Za-z_0-9]*" contained
syn match txr_splicevar "[ \t,*@]*[A-Za-z_][A-Za-z_0-9]*" contained
@@ -788,7 +798,7 @@ syn match txr_ncomment ";.*"
syn match txr_hashbang "\%^#!.*"
-syn match txr_qat "\(@[ \t]*\)" nextgroup=txr_splicevar,txr_metanum,txr_qbracevar,txr_list,txr_bracket,txr_escat,txr_stresc,txr_numesc,txr_badesc contained
+syn match txr_qat "\(@[ \t]*\)\(\~\([\^<>]\?[0-9]*\(,[+\-0 ]*[0-9]*\)\?\)\?[asdxXobfepi]:\)\?" nextgroup=txr_splicevar,txr_metanum,txr_qbracevar,txr_list,txr_bracket,txr_escat,txr_stresc,txr_numesc,txr_badesc contained
syn match txr_dot "\." contained
syn match txr_ident "[A-Za-z_0-9!$%&*+\-<=>?\\_|~]*[A-Za-z_!$%&*+\-<=>?\\_|~^][A-Za-z_0-9!$%&*+\-<=>?\\_|~^]*" contained
syn match txr_braced_ident "\(#\?:\)\?[[A-Za-z_0-9!$%&*+\-<=>?\\_|~^/]\+" contained
@@ -914,5 +924,5 @@ hi def link txr_jerr Error
let b:current_syntax = "lisp"
-set lispwords=ado,alet,align,alignof,ap,append-each,append-each*,append-each-prod,append-each-prod*,append-match-products,append-matches,aret,array,arraysize,assert,awk,bit,block,block*,bool,buf,buf-d,build,buildn,carray,case,case*,caseq,caseq*,caseql,caseql*,casequal,casequal*,catch,catch*,catch**,clear-mask,close-lazy-streams,collect-each,collect-each*,collect-each-prod,collect-each-prod*,compare-swap,compile-only,compiler-let,cond,conda,condlet,cptr,dec,defenum,defex,deffi,deffi-cb,deffi-cb-unsafe,deffi-struct,deffi-sym,deffi-type,deffi-union,deffi-var,define-accessor,define-modify-macro,define-option-struct,define-param-expander,define-place-macro,define-struct-clause,define-struct-prelude,defmacro,defmatch,defmeth,defpackage,defparm,defparml,defplace,defset,defstruct,defsymacro,defun,defun-match,defvar,defvarl,del,delay,do,dohash,doloop,doloop*,dotimes,each,each*,each-false,each-match,each-match-product,each-prod,each-prod*,each-true,ecase,ecase*,ecaseq,ecaseq*,ecaseql,ecaseql*,ecasequal,ecasequal*,elemsize,elemtype,ensure,enum,enumed,enumlet,equot,etypecase,eval-only,expander-let,ffi,flet,flip,flow,for,for*,fun,gen,go,gun,handle,handle*,handler-bind,hlet,hlet*,ido,if,if-match,ifa,iflet,ifx,ignerr,ignwarn,in-package,ip,json,keep-match-products,keep-matches,labels,lambda,lambda-match,lcons,ldo,let,let*,letrec,lflow,lnew*,load-for,load-time,loand,lop,lop1,lopf,lopip,lset,mac-env-param-bind,mac-param-bind,macro-time,macrolet,match,match-case,match-cond,match-ecase,match-tuple-case,mlet,mul-each,mul-each*,mul-each-prod,mul-each-prod*,nand,new*,nor,obtain,obtain*,obtain*-block,obtain-block,offsetof,op,opf,pack,pdec,pic,pinc,placelet,placelet*,pop,pop-after-load,pprof,prof,prog,prog*,prog1,prog2,progn,progv,ptr,ptr-in,ptr-in-d,ptr-out,ptr-out-d,ptr-out-s,push,push-after-load,pushnew,ret,return,return-from,rlet,rslot,sbit,set-mask,setjmp,sizeof,slet,some-false,some-true,splice,struct,sum-each,sum-each*,sum-each-prod,sum-each-prod*,suspend,symacrolet,sys:abscond-from,sys:arith-each,sys:awk-fun-let,sys:awk-mac-let,sys:awk-mac-let-outer,sys:awk-redir,sys:awk-symac-let,sys:blk,sys:cached-sort-body,sys:catch,sys:conv,sys:conv-expand-sym,sys:div,sys:dlib-expr,sys:dvbind,sys:each-op,sys:expr,sys:fbind,sys:fixed-point,sys:for-op,sys:ign-notfound,sys:l1-val,sys:lbind,sys:lisp1-value,sys:load-time-lit,sys:lopip1,sys:meth-lambda,sys:mul,sys:path-examine,sys:placelet-1,sys:rewrite-case,sys:splice,sys:struct-lit,sys:switch,sys:txr-case-impl,sys:unquote,sys:upenv,sys:var,sys:when-exprs-match,sys:when-opt,sys:with-disabled-debugging,tagbody,tap,tb,tc,test-clear,test-dec,test-inc,test-set,trace,tree-bind,tree-case,txr-case,txr-if,txr-when,typecase,typedef,ubit,union,unless,unquote,until,until*,untrace,unwind-protect,upd,uref,when,when-match,whena,whenlet,while,while*,while-match,while-match-case,while-true-match-case,whilet,with-clobber-expander,with-compilation-unit,with-compile-opts,with-delete-expander,with-dyn-lib,with-gensyms,with-hash-iter,with-in-buf-stream,with-in-string-byte-stream,with-in-string-stream,with-objects,with-out-buf-stream,with-out-string-stream,with-out-strlist-stream,with-resources,with-slots,with-stream,with-update-expander,yield,yield-from,zap,zarray,znew,:method,:function,:init,:postinit,:fini
+set lispwords=ado,alet,align,alignof,ap,append-each,append-each*,append-each-prod,append-each-prod*,append-match-case-products,append-match-cases,append-match-products,append-matches,aret,array,arraysize,assert,awk,bit,block,block*,bool,buf,buf-d,build,buildn,carray,case,case*,caseq,caseq*,caseql,caseql*,casequal,casequal*,catch,catch*,catch**,clear-mask,close-lazy-streams,collect-each,collect-each*,collect-each-prod,collect-each-prod*,collect-match-case-products,collect-match-cases,compare-swap,compile-only,compiler-let,cond,conda,condlet,cptr,dec,defenum,defex,deffi,deffi-cb,deffi-cb-unsafe,deffi-struct,deffi-sym,deffi-type,deffi-union,deffi-var,define-accessor,define-modify-macro,define-option-struct,define-param-expander,define-place-macro,define-struct-clause,define-struct-prelude,defmacro,defmatch,defmeth,defpackage,defparm,defparml,defplace,defset,defstruct,defsymacro,defun,defun-match,defvar,defvarl,del,delay,div,do,dohash,doloop,doloop*,dotimes,each,each*,each-false,each-match,each-match-case,each-match-case-product,each-match-product,each-prod,each-prod*,each-true,ecase,ecase*,ecaseq,ecaseq*,ecaseql,ecaseql*,ecasequal,ecasequal*,elemsize,elemtype,ensure,enum,enumed,enumlet,equot,etypecase,eval-only,ffi,flet,flip,flow,for,for*,fun,gen,go,gun,handle,handle*,handler-bind,hlet,hlet*,ido,if,if-match,ifa,iflet,ifx,ignerr,ignwarn,in-package,ip,json,keep-match-case-products,keep-match-cases,keep-match-products,keep-matches,labels,lambda,lambda-match,lcons,ldo,let,let*,letrec,lflow,lnew*,load-for,load-time,loand,lop,lop1,lopf,lopip,lset,mac-env-param-bind,mac-param-bind,macro-time,match,match-case,match-cond,match-ecase,match-tuple-case,mlet,mul,mul-each,mul-each*,mul-each-prod,mul-each-prod*,nand,new*,nor,obtain,obtain*,obtain*-block,obtain-block,offsetof,op,opf,pack,pdec,pic,pinc,placelet,placelet*,pop,pop-after-load,pprof,prof,prog,prog*,prog1,prog2,progn,progv,ptr,ptr-in,ptr-in-d,ptr-out,ptr-out-d,ptr-out-s,push,push-after-load,pushnew,ret,return,return-from,rlet,rslot,sbit,set-mask,setjmp,sizeof,slet,some-false,some-true,struct,sum-each,sum-each*,sum-each-prod,sum-each-prod*,suspend,sys:abscond-from,sys:and-set,sys:arith-each,sys:ash-set,sys:asr,sys:asr-set,sys:awk-fun-let,sys:awk-mac-let,sys:awk-mac-let-outer,sys:awk-redir,sys:awk-symac-let,sys:blk,sys:cached-sort-body,sys:catch,sys:conv,sys:conv-expand-sym,sys:dlib-expr,sys:dvbind,sys:each-op,sys:fbind,sys:fixed-point,sys:for-op,sys:funp,sys:ign-notfound,sys:l1-val,sys:lbind,sys:lisp1-value,sys:load-time-lit,sys:logand-set,sys:logior-set,sys:logxor-set,sys:lopip1,sys:meth-lambda,sys:mod-set,sys:or-set,sys:path-examine,sys:placelet-1,sys:rewrite-case,sys:struct-lit,sys:switch,sys:txr-case-impl,sys:upenv,sys:when-opt,sys:with-disabled-debugging,tagbody,tap,tb,tc,test-clear,test-dec,test-inc,test-set,trace,tree-bind,tree-case,txr-case,txr-if,txr-when,typecase,typedef,ubit,union,unless,until,until*,untrace,unwind-protect,upd,uref,when,when-match,whena,whenlet,while,while*,while-match,while-match-case,while-true-match-case,whilet,with-clobber-expander,with-compilation-unit,with-compile-opts,with-delete-expander,with-dyn-lib,with-gensyms,with-hash-iter,with-in-buf-stream,with-in-string-byte-stream,with-in-string-stream,with-objects,with-out-buf-stream,with-out-string-stream,with-out-strlist-stream,with-resources,with-slots,with-stream,with-update-expander,yield,yield-from,zap,zarray,znew,:method,:function,:init,:postinit,:fini
set comments=:\;\;\;,:\;\;,:\;
diff --git a/txr.1 b/txr.1
index 6eed1ff2..808b547c 100644
--- a/txr.1
+++ b/txr.1
@@ -430,9 +430,9 @@
.ds TX \f[B]TXR\f[]
.ds TL \f[B]TXR Lisp\f[]
.\" Start of man page:
-.TH TXR 1 2025-02-16 "Utility Commands" "TXR Programming Language" "Kaz Kylheku"
+.TH TXR 1 2025-05-31 "Utility Commands" "TXR Programming Language" "Kaz Kylheku"
.SH* NAME
-\*(TX \- Programming Language (Version 299)
+\*(TX \- Programming Language (Version 300)
.SH* SYNOPSIS
.mono
@@ -95011,7 +95011,7 @@ versions 2, 3, 4 and 5, regardless of minor version.
Versions 252 through 259 produce version 6.0 files and load
only version 6, regardless of minor version.
-Versions 260 through 298 produce version 7.0 files and load
+Versions 260 through 300 produce version 7.0 files and load
versions 6 and 7, regardless of minor version.
Version 261 introduces JSON
.code #J
diff --git a/txr.vim b/txr.vim
index c25fb825..9aba61fa 100644
--- a/txr.vim
+++ b/txr.vim
@@ -24,73 +24,74 @@ syn keyword tl_keyword contained %e% %fun% %pi% *
syn keyword tl_keyword contained *args* *args-eff* *args-full* *child-env*
syn keyword tl_keyword contained *compile-opts* *doc-url* *expand-hook* *filters*
syn keyword tl_keyword contained *full-args* *gensym-counter* *hash-seed* *lib-version*
-syn keyword tl_keyword contained *listener-auto-compound-p* *listener-greedy-eval-p* *listener-hist-len* *listener-multi-line-p*
-syn keyword tl_keyword contained *listener-pprint-p* *listener-sel-inclusive-p* *load-args* *load-hooks*
-syn keyword tl_keyword contained *load-path* *load-search-dirs* *match-macro* *opt-level*
-syn keyword tl_keyword contained *package* *package-alist* *param-macro* *place-clobber-expander*
-syn keyword tl_keyword contained *place-delete-expander* *place-macro* *place-update-expander* *pprint-flo-format*
-syn keyword tl_keyword contained *print-base* *print-circle* *print-flo-digits* *print-flo-format*
-syn keyword tl_keyword contained *print-flo-precision* *print-json-format* *print-json-type* *random-state*
-syn keyword tl_keyword contained *random-warmup* *read-bad-json* *read-json-int* *read-unknown-structs*
-syn keyword tl_keyword contained *rec-source-loc* *stddebug* *stderr* *stdin*
-syn keyword tl_keyword contained *stdlog* *stdnull* *stdout* *struct-clause-expander*
-syn keyword tl_keyword contained *trace-output* *tree-fun-whitelist* *txr-version* *unhandled-hook*
-syn keyword tl_keyword contained + - / /=
-syn keyword tl_keyword contained : := :abandoned :abs
-syn keyword tl_keyword contained :addr :all :android :apf
-syn keyword tl_keyword contained :append :args :atime :auto
-syn keyword tl_keyword contained :awk-again :awk-file :awk-rec :begin
-syn keyword tl_keyword contained :begin-file :blksize :blocks :bool
-syn keyword tl_keyword contained :byte-oriented :cdigit :chars :cint
-syn keyword tl_keyword contained :clean :close :compile :continue
-syn keyword tl_keyword contained :counter :cspace :csv :ctime
-syn keyword tl_keyword contained :cword-char :cygnal :cygwin :dec
-syn keyword tl_keyword contained :decline :delegate :dev :digit
-syn keyword tl_keyword contained :downcase :end :end-file :env
-syn keyword tl_keyword contained :eq-based :eql-based :equal-based :error
-syn keyword tl_keyword contained :explicit-no :fallback :fd :fence
-syn keyword tl_keyword contained :fields :filter :fini :finish
-syn keyword tl_keyword contained :float :form :from-current :from-end
-syn keyword tl_keyword contained :from-start :from_html :frombase64 :frombase64url
-syn keyword tl_keyword contained :fromhtml :frompercent :fromurl :fun
-syn keyword tl_keyword contained :function :gap :gid :greedy
-syn keyword tl_keyword contained :hex :hextoint :inf :infix
-syn keyword tl_keyword contained :inherit :init :ino :inp
-syn keyword tl_keyword contained :inputs :instance :into :key
-syn keyword tl_keyword contained :left :let :lfilt :lines
-syn keyword tl_keyword contained :linux :list :lists :local
-syn keyword tl_keyword contained :longest :macos :macro :mandatory
-syn keyword tl_keyword contained :mass-delegate :match :maxgap :maxtimes
-syn keyword tl_keyword contained :method :mid :mingap :mintimes
-syn keyword tl_keyword contained :mode :mtime :name :named
-syn keyword tl_keyword contained :next-spec :nlink :noclose :nothrow
-syn keyword tl_keyword contained :oct :ok :openbsd :outf
-syn keyword tl_keyword contained :outp :output :owner :perms
-syn keyword tl_keyword contained :postfini :postfix :postinit :prefix
-syn keyword tl_keyword contained :prio :rdev :real-time :reflect
-syn keyword tl_keyword contained :repeat-spec :resolve :rfilt :right
-syn keyword tl_keyword contained :set :set-file :shortest :size
-syn keyword tl_keyword contained :solaris :solaris10 :space :standard
-syn keyword tl_keyword contained :static :str :string :symacro
-syn keyword tl_keyword contained :symlinks :text :times :tlist
-syn keyword tl_keyword contained :to_html :tobase64 :tobase64url :tofloat
-syn keyword tl_keyword contained :tohtml :tohtml* :toint :tonumber
-syn keyword tl_keyword contained :topercent :tourl :uid :unknown
-syn keyword tl_keyword contained :upcase :use :use-from :use-syms
-syn keyword tl_keyword contained :use-syms-as :userdata :var :vars
-syn keyword tl_keyword contained :warn :weak-and :weak-keys :weak-or
-syn keyword tl_keyword contained :weak-vals :whole :word-char :wrap
-syn keyword tl_keyword contained < <= = >
-syn keyword tl_keyword contained >= abort abs abs-path-p
-syn keyword tl_keyword contained acons acons-new aconsql-new acos
-syn keyword tl_keyword contained acosh add-suffix ado af-inet
-syn keyword tl_keyword contained af-inet6 af-unix af-unspec ai-addrconfig
-syn keyword tl_keyword contained ai-all ai-canonname ai-numerichost ai-numericserv
-syn keyword tl_keyword contained ai-passive ai-v4mapped alet align
-syn keyword tl_keyword contained alignof alist-nremove alist-remove all
-syn keyword tl_keyword contained allocate-struct and andf ap
-syn keyword tl_keyword contained apf append append* append-each
-syn keyword tl_keyword contained append-each* append-each-prod append-each-prod* append-match-products
+syn keyword tl_keyword contained *listener-auto-compound-p* *listener-auto-infix-p* *listener-greedy-eval-p* *listener-hist-len*
+syn keyword tl_keyword contained *listener-multi-line-p* *listener-pprint-p* *listener-sel-inclusive-p* *load-args*
+syn keyword tl_keyword contained *load-hooks* *load-path* *load-search-dirs* *match-macro*
+syn keyword tl_keyword contained *opt-level* *package* *package-alist* *param-macro*
+syn keyword tl_keyword contained *place-clobber-expander* *place-delete-expander* *place-macro* *place-update-expander*
+syn keyword tl_keyword contained *pprint-flo-format* *print-base* *print-circle* *print-flo-digits*
+syn keyword tl_keyword contained *print-flo-format* *print-flo-precision* *print-json-format* *print-json-type*
+syn keyword tl_keyword contained *random-state* *random-warmup* *read-bad-json* *read-json-int*
+syn keyword tl_keyword contained *read-unknown-structs* *rec-source-loc* *stddebug* *stderr*
+syn keyword tl_keyword contained *stdin* *stdlog* *stdnull* *stdout*
+syn keyword tl_keyword contained *struct-clause-expander* *trace-output* *tree-fun-whitelist* *txr-version*
+syn keyword tl_keyword contained *unhandled-hook* + - /
+syn keyword tl_keyword contained /= : := :abandoned
+syn keyword tl_keyword contained :abs :addr :all :android
+syn keyword tl_keyword contained :apf :append :args :atime
+syn keyword tl_keyword contained :auto :awk-again :awk-file :awk-rec
+syn keyword tl_keyword contained :begin :begin-file :blksize :blocks
+syn keyword tl_keyword contained :bool :byte-oriented :cdigit :chars
+syn keyword tl_keyword contained :cint :clean :close :compile
+syn keyword tl_keyword contained :continue :counter :cspace :csv
+syn keyword tl_keyword contained :ctime :cword-char :cygnal :cygwin
+syn keyword tl_keyword contained :dec :decline :delegate :dev
+syn keyword tl_keyword contained :digit :downcase :end :end-file
+syn keyword tl_keyword contained :env :eq-based :eql-based :equal-based
+syn keyword tl_keyword contained :error :explicit-no :fallback :fd
+syn keyword tl_keyword contained :fence :fields :filter :fini
+syn keyword tl_keyword contained :finish :float :form :from-current
+syn keyword tl_keyword contained :from-end :from-start :from_html :frombase64
+syn keyword tl_keyword contained :frombase64url :fromhtml :frompercent :fromurl
+syn keyword tl_keyword contained :fun :function :gap :gid
+syn keyword tl_keyword contained :greedy :hex :hextoint :inf
+syn keyword tl_keyword contained :infix :inherit :init :ino
+syn keyword tl_keyword contained :inp :inputs :instance :into
+syn keyword tl_keyword contained :key :left :let :lfilt
+syn keyword tl_keyword contained :lines :linux :list :lists
+syn keyword tl_keyword contained :local :longest :macos :macro
+syn keyword tl_keyword contained :mandatory :mass-delegate :match :maxgap
+syn keyword tl_keyword contained :maxtimes :method :mid :mingap
+syn keyword tl_keyword contained :mintimes :mode :mtime :name
+syn keyword tl_keyword contained :named :next-spec :nlink :noclose
+syn keyword tl_keyword contained :nothrow :oct :ok :openbsd
+syn keyword tl_keyword contained :outf :outp :output :owner
+syn keyword tl_keyword contained :perms :postfini :postfix :postinit
+syn keyword tl_keyword contained :prefix :prio :rdev :real-time
+syn keyword tl_keyword contained :reflect :repeat-spec :resolve :rfilt
+syn keyword tl_keyword contained :right :set :set-file :shortest
+syn keyword tl_keyword contained :size :solaris :solaris10 :space
+syn keyword tl_keyword contained :standard :static :str :string
+syn keyword tl_keyword contained :symacro :symlinks :text :times
+syn keyword tl_keyword contained :tlist :to_html :tobase64 :tobase64url
+syn keyword tl_keyword contained :tofloat :tohtml :tohtml* :toint
+syn keyword tl_keyword contained :tonumber :topercent :tourl :trace
+syn keyword tl_keyword contained :uid :unknown :upcase :use
+syn keyword tl_keyword contained :use-from :use-syms :use-syms-as :userdata
+syn keyword tl_keyword contained :var :vars :warn :weak-and
+syn keyword tl_keyword contained :weak-keys :weak-or :weak-vals :whole
+syn keyword tl_keyword contained :word-char :wrap < <=
+syn keyword tl_keyword contained = > >= abort
+syn keyword tl_keyword contained abs abs-path-p acons acons-new
+syn keyword tl_keyword contained aconsql-new acos acosh add-suffix
+syn keyword tl_keyword contained ado af-inet af-inet6 af-unix
+syn keyword tl_keyword contained af-unspec ai-addrconfig ai-all ai-canonname
+syn keyword tl_keyword contained ai-numerichost ai-numericserv ai-passive ai-v4mapped
+syn keyword tl_keyword contained alet align alignof alist-nremove
+syn keyword tl_keyword contained alist-remove all allocate-struct and
+syn keyword tl_keyword contained andf ap apf append
+syn keyword tl_keyword contained append* append-each append-each* append-each-prod
+syn keyword tl_keyword contained append-each-prod* append-match-case-products append-match-cases append-match-products
syn keyword tl_keyword contained append-matches apply aret arithp
syn keyword tl_keyword contained array arraysize ash asin
syn keyword tl_keyword contained asinh assert assoc assq
@@ -106,64 +107,68 @@ syn keyword tl_keyword contained bit bitset blkcnt-t blksize-t
syn keyword tl_keyword contained block block* bool boundp
syn keyword tl_keyword contained bracket break-str brkint bs0
syn keyword tl_keyword contained bs1 bsdly bstr bstr-d
-syn keyword tl_keyword contained bstr-s buf buf-alloc-size buf-carray
-syn keyword tl_keyword contained buf-compress buf-d buf-decompress buf-get-char
-syn keyword tl_keyword contained buf-get-cptr buf-get-double buf-get-float buf-get-i16
-syn keyword tl_keyword contained buf-get-i32 buf-get-i64 buf-get-i8 buf-get-int
-syn keyword tl_keyword contained buf-get-long buf-get-short buf-get-u16 buf-get-u32
-syn keyword tl_keyword contained buf-get-u64 buf-get-u8 buf-get-uchar buf-get-uint
-syn keyword tl_keyword contained buf-get-ulong buf-get-ushort buf-int buf-list
-syn keyword tl_keyword contained buf-put-buf buf-put-char buf-put-cptr buf-put-double
-syn keyword tl_keyword contained buf-put-float buf-put-i16 buf-put-i32 buf-put-i64
-syn keyword tl_keyword contained buf-put-i8 buf-put-int buf-put-long buf-put-short
-syn keyword tl_keyword contained buf-put-u16 buf-put-u32 buf-put-u64 buf-put-u8
-syn keyword tl_keyword contained buf-put-uchar buf-put-uint buf-put-ulong buf-put-ushort
-syn keyword tl_keyword contained buf-set-length buf-str buf-trim buf-uint
-syn keyword tl_keyword contained bufp build build-list buildn
-syn keyword tl_keyword contained built-in-type-p butlast butlastn caaaaar
-syn keyword tl_keyword contained caaaadr caaaar caaadar caaaddr
-syn keyword tl_keyword contained caaadr caaar caadaar caadadr
-syn keyword tl_keyword contained caadar caaddar caadddr caaddr
-syn keyword tl_keyword contained caadr caar cadaaar cadaadr
-syn keyword tl_keyword contained cadaar cadadar cadaddr cadadr
-syn keyword tl_keyword contained cadar caddaar caddadr caddar
-syn keyword tl_keyword contained cadddar caddddr cadddr caddr
-syn keyword tl_keyword contained cadr call call-clobber-expander call-delete-expander
-syn keyword tl_keyword contained call-finalizers call-super-fun call-super-method call-update-expander
-syn keyword tl_keyword contained callf car carray carray-blank
-syn keyword tl_keyword contained carray-buf carray-buf-sync carray-cptr carray-dup
-syn keyword tl_keyword contained carray-free carray-get carray-getz carray-int
-syn keyword tl_keyword contained carray-list carray-own carray-pun carray-put
-syn keyword tl_keyword contained carray-putz carray-ref carray-refset carray-replace
-syn keyword tl_keyword contained carray-set-length carray-sub carray-type carray-uint
-syn keyword tl_keyword contained carray-vec carrayp case case*
-syn keyword tl_keyword contained caseq caseq* caseql caseql*
-syn keyword tl_keyword contained casequal casequal* cat-files cat-str
-syn keyword tl_keyword contained cat-streams cat-vec catch catch*
-syn keyword tl_keyword contained catch** catenated-stream-p catenated-stream-push cbaud
-syn keyword tl_keyword contained cbaudex cbrt cdaaaar cdaaadr
-syn keyword tl_keyword contained cdaaar cdaadar cdaaddr cdaadr
-syn keyword tl_keyword contained cdaar cdadaar cdadadr cdadar
-syn keyword tl_keyword contained cdaddar cdadddr cdaddr cdadr
-syn keyword tl_keyword contained cdar cddaaar cddaadr cddaar
-syn keyword tl_keyword contained cddadar cddaddr cddadr cddar
-syn keyword tl_keyword contained cdddaar cdddadr cdddar cddddar
-syn keyword tl_keyword contained cdddddr cddddr cdddr cddr
-syn keyword tl_keyword contained cdr ceil ceil-rem chain
-syn keyword tl_keyword contained chand char chdir chmod
-syn keyword tl_keyword contained chmod-rec chown chown-rec chr-digit
-syn keyword tl_keyword contained chr-int chr-isalnum chr-isalpha chr-isascii
-syn keyword tl_keyword contained chr-isblank chr-iscntrl chr-isdigit chr-isgraph
-syn keyword tl_keyword contained chr-islower chr-isprint chr-ispunct chr-isspace
-syn keyword tl_keyword contained chr-isunisp chr-isupper chr-isxdigit chr-num
-syn keyword tl_keyword contained chr-str chr-str-set chr-tolower chr-toupper
-syn keyword tl_keyword contained chr-xdigit chrp clamp clean-file
-syn keyword tl_keyword contained clear-dirty clear-error clear-mask clear-struct
-syn keyword tl_keyword contained clearhash clocal clock-t clockid-t
-syn keyword tl_keyword contained close close-lazy-streams close-stream closedir
-syn keyword tl_keyword contained closelog closure cmp-str cmspar
-syn keyword tl_keyword contained cnshuffle cnsort coded-length collect-each
-syn keyword tl_keyword contained collect-each* collect-each-prod collect-each-prod* comb
+syn keyword tl_keyword contained bstr-s buf buf-alloc-size buf-and
+syn keyword tl_keyword contained buf-ash buf-binary-width buf-bit buf-bitset
+syn keyword tl_keyword contained buf-carray buf-compress buf-count-ones buf-d
+syn keyword tl_keyword contained buf-decompress buf-fash buf-get-char buf-get-cptr
+syn keyword tl_keyword contained buf-get-double buf-get-float buf-get-i16 buf-get-i32
+syn keyword tl_keyword contained buf-get-i64 buf-get-i8 buf-get-int buf-get-long
+syn keyword tl_keyword contained buf-get-short buf-get-u16 buf-get-u32 buf-get-u64
+syn keyword tl_keyword contained buf-get-u8 buf-get-uchar buf-get-uint buf-get-ulong
+syn keyword tl_keyword contained buf-get-ushort buf-int buf-list buf-not
+syn keyword tl_keyword contained buf-or buf-put-buf buf-put-char buf-put-cptr
+syn keyword tl_keyword contained buf-put-double buf-put-float buf-put-i16 buf-put-i32
+syn keyword tl_keyword contained buf-put-i64 buf-put-i8 buf-put-int buf-put-long
+syn keyword tl_keyword contained buf-put-short buf-put-u16 buf-put-u32 buf-put-u64
+syn keyword tl_keyword contained buf-put-u8 buf-put-uchar buf-put-uint buf-put-ulong
+syn keyword tl_keyword contained buf-put-ushort buf-set-length buf-str buf-test
+syn keyword tl_keyword contained buf-trim buf-trunc buf-uint buf-xor
+syn keyword tl_keyword contained buf-xor-pattern buf-zero-p bufp build
+syn keyword tl_keyword contained build-list buildn built-in-type-p butlast
+syn keyword tl_keyword contained butlastn caaaaar caaaadr caaaar
+syn keyword tl_keyword contained caaadar caaaddr caaadr caaar
+syn keyword tl_keyword contained caadaar caadadr caadar caaddar
+syn keyword tl_keyword contained caadddr caaddr caadr caar
+syn keyword tl_keyword contained cadaaar cadaadr cadaar cadadar
+syn keyword tl_keyword contained cadaddr cadadr cadar caddaar
+syn keyword tl_keyword contained caddadr caddar cadddar caddddr
+syn keyword tl_keyword contained cadddr caddr cadr call
+syn keyword tl_keyword contained call-clobber-expander call-delete-expander call-finalizers call-super-fun
+syn keyword tl_keyword contained call-super-method call-update-expander callf car
+syn keyword tl_keyword contained carray carray-blank carray-buf carray-buf-sync
+syn keyword tl_keyword contained carray-cptr carray-dup carray-free carray-get
+syn keyword tl_keyword contained carray-getz carray-int carray-list carray-own
+syn keyword tl_keyword contained carray-pun carray-put carray-putz carray-ref
+syn keyword tl_keyword contained carray-refset carray-replace carray-set-length carray-sub
+syn keyword tl_keyword contained carray-type carray-uint carray-vec carrayp
+syn keyword tl_keyword contained case case* caseq caseq*
+syn keyword tl_keyword contained caseql caseql* casequal casequal*
+syn keyword tl_keyword contained cat-files cat-str cat-streams cat-vec
+syn keyword tl_keyword contained catch catch* catch** catenated-stream-p
+syn keyword tl_keyword contained catenated-stream-push cbaud cbaudex cbrt
+syn keyword tl_keyword contained cdaaaar cdaaadr cdaaar cdaadar
+syn keyword tl_keyword contained cdaaddr cdaadr cdaar cdadaar
+syn keyword tl_keyword contained cdadadr cdadar cdaddar cdadddr
+syn keyword tl_keyword contained cdaddr cdadr cdar cddaaar
+syn keyword tl_keyword contained cddaadr cddaar cddadar cddaddr
+syn keyword tl_keyword contained cddadr cddar cdddaar cdddadr
+syn keyword tl_keyword contained cdddar cddddar cdddddr cddddr
+syn keyword tl_keyword contained cdddr cddr cdr ceil
+syn keyword tl_keyword contained ceil-rem chain chand char
+syn keyword tl_keyword contained chdir chmod chmod-rec chown
+syn keyword tl_keyword contained chown-rec chr-digit chr-int chr-isalnum
+syn keyword tl_keyword contained chr-isalpha chr-isascii chr-isblank chr-iscntrl
+syn keyword tl_keyword contained chr-isdigit chr-isgraph chr-islower chr-isprint
+syn keyword tl_keyword contained chr-ispunct chr-isspace chr-isunisp chr-isupper
+syn keyword tl_keyword contained chr-isxdigit chr-num chr-str chr-str-set
+syn keyword tl_keyword contained chr-tolower chr-toupper chr-xdigit chrp
+syn keyword tl_keyword contained clamp clean-file clear-dirty clear-error
+syn keyword tl_keyword contained clear-mask clear-struct clearhash clocal
+syn keyword tl_keyword contained clock-t clockid-t close close-lazy-streams
+syn keyword tl_keyword contained close-stream closedir closelog closure
+syn keyword tl_keyword contained cmp-str cmspar cnshuffle cnsort
+syn keyword tl_keyword contained coded-length collect-each collect-each* collect-each-prod
+syn keyword tl_keyword contained collect-each-prod* collect-match-case-products collect-match-cases comb
syn keyword tl_keyword contained combi command-get command-get-buf command-get-json
syn keyword tl_keyword contained command-get-jsons command-get-lines command-get-string command-put
syn keyword tl_keyword contained command-put-buf command-put-json command-put-jsons command-put-lines
@@ -201,100 +206,101 @@ syn keyword tl_keyword contained defsymacro defun defun-match defvar
syn keyword tl_keyword contained defvarl del delay delcons
syn keyword tl_keyword contained delete-package dev-t diff digits
syn keyword tl_keyword contained digpow dir-name dirstat disassemble
-syn keyword tl_keyword contained display-width divides dlclose dlopen
-syn keyword tl_keyword contained dlsym dlsym-checked dlvsym dlvsym-checked
-syn keyword tl_keyword contained do doc dohash doloop
-syn keyword tl_keyword contained doloop* dotimes double downcase-str
-syn keyword tl_keyword contained drem drop drop-until drop-while
-syn keyword tl_keyword contained dt-blk dt-chr dt-dir dt-fifo
-syn keyword tl_keyword contained dt-lnk dt-reg dt-sock dt-unknown
-syn keyword tl_keyword contained dump-compiled-objects dump-deferred-warnings dup dupfd
-syn keyword tl_keyword contained dwim e2big eacces each
-syn keyword tl_keyword contained each* each-false each-match each-match-product
-syn keyword tl_keyword contained each-prod each-prod* each-true eaddrinuse
-syn keyword tl_keyword contained eaddrnotavail eafnosupport eagain ealready
-syn keyword tl_keyword contained ebadf ebadmsg ebusy ecanceled
-syn keyword tl_keyword contained ecase ecase* ecaseq ecaseq*
-syn keyword tl_keyword contained ecaseql ecaseql* ecasequal ecasequal*
-syn keyword tl_keyword contained echild echo echoctl echoe
-syn keyword tl_keyword contained echok echoke echonl echoprt
-syn keyword tl_keyword contained econnaborted econnrefused econnreset edeadlk
-syn keyword tl_keyword contained edestaddrreq edom edquot eexist
-syn keyword tl_keyword contained efault efbig ehostunreach eidrm
-syn keyword tl_keyword contained eighth eilseq einprogress eintr
-syn keyword tl_keyword contained einval eio eisconn eisdir
-syn keyword tl_keyword contained elemsize elemtype eloop emfile
-syn keyword tl_keyword contained emlink empty emsgsize emultihop
-syn keyword tl_keyword contained enametoolong endgrent endp endpwent
-syn keyword tl_keyword contained ends-with enetdown enetreset enetunreach
-syn keyword tl_keyword contained enfile enobufs enodata enodev
-syn keyword tl_keyword contained enoent enoexec enolck enolink
-syn keyword tl_keyword contained enomem enomsg enoprotoopt enospc
-syn keyword tl_keyword contained enosr enostr enosys enotconn
-syn keyword tl_keyword contained enotdir enotempty enotrecoverable enotsock
-syn keyword tl_keyword contained enotsup enotty ensure ensure-dir
-syn keyword tl_keyword contained enum enumed enumlet env
-syn keyword tl_keyword contained env-fbind env-fbindings env-hash env-next
-syn keyword tl_keyword contained env-vbind env-vbindings enxio eopnotsupp
-syn keyword tl_keyword contained eoverflow eownerdead eperm epipe
-syn keyword tl_keyword contained eproto eprotonosupport eprototype eq
-syn keyword tl_keyword contained eql equal equot erange
-syn keyword tl_keyword contained erf erfc erofs errno
-syn keyword tl_keyword contained error espipe esrch estale
-syn keyword tl_keyword contained etime etimedout etxtbsy etypecase
-syn keyword tl_keyword contained eval eval-only evenp ewouldblock
-syn keyword tl_keyword contained exception-subtype-map exception-subtype-p exdev exec
-syn keyword tl_keyword contained exit exit* exp exp10
-syn keyword tl_keyword contained exp2 expand expand* expand-hook-combine
-syn keyword tl_keyword contained expand-left expand-right expand-with-free-refs expander-let
-syn keyword tl_keyword contained expm1 expt exptmod extproc
-syn keyword tl_keyword contained f$ f-dupfd f-dupfd-cloexec f-getfd
-syn keyword tl_keyword contained f-getfl f-getlk f-rdlck f-setfd
-syn keyword tl_keyword contained f-setfl f-setlk f-setlkw f-unlck
-syn keyword tl_keyword contained f-wrlck f^ f^$ false
-syn keyword tl_keyword contained fboundp fcntl fd-cloexec fdim
-syn keyword tl_keyword contained ff0 ff1 ffdly ffi
-syn keyword tl_keyword contained ffi-alignof ffi-arraysize ffi-call ffi-elemsize
-syn keyword tl_keyword contained ffi-elemtype ffi-get ffi-in ffi-make-call-desc
-syn keyword tl_keyword contained ffi-make-closure ffi-offsetof ffi-out ffi-put
-syn keyword tl_keyword contained ffi-put-into ffi-size ffi-type-compile ffi-type-operator-p
-syn keyword tl_keyword contained ffi-type-p ffi-typedef fifth file-append
-syn keyword tl_keyword contained file-append-buf file-append-json file-append-jsons file-append-lines
-syn keyword tl_keyword contained file-append-objects file-append-string file-get file-get-buf
-syn keyword tl_keyword contained file-get-json file-get-jsons file-get-lines file-get-objects
-syn keyword tl_keyword contained file-get-string file-place-buf file-put file-put-buf
-syn keyword tl_keyword contained file-put-json file-put-jsons file-put-lines file-put-objects
-syn keyword tl_keyword contained file-put-string fileno fill-buf fill-buf-adjust
-syn keyword tl_keyword contained fill-carray fill-obj fill-vec filter-equal
-syn keyword tl_keyword contained filter-string-tree finalize find find-frame
-syn keyword tl_keyword contained find-frames find-frames-by-mask find-if find-max
-syn keyword tl_keyword contained find-max-key find-maxes find-min find-min-key
-syn keyword tl_keyword contained find-mins find-package find-struct-type find-symbol
-syn keyword tl_keyword contained find-symbol-fb find-true first fixnum-max
-syn keyword tl_keyword contained fixnum-min fixnump flatcar flatcar*
-syn keyword tl_keyword contained flatten flatten* flet flip
-syn keyword tl_keyword contained flipargs flo-dig flo-down flo-epsilon
-syn keyword tl_keyword contained flo-get-round-mode flo-int flo-max flo-max-dig
-syn keyword tl_keyword contained flo-min flo-near flo-set-round-mode flo-str
-syn keyword tl_keyword contained flo-up flo-zero float floatp
-syn keyword tl_keyword contained floor floor-rem flow flush-stream
-syn keyword tl_keyword contained flusho fmakunbound fmax fmin
-syn keyword tl_keyword contained fmt fnm-casefold fnm-extmatch fnm-leading-dir
-syn keyword tl_keyword contained fnm-noescape fnm-pathname fnm-period fnmatch
-syn keyword tl_keyword contained for for* force force-break
-syn keyword tl_keyword contained fork format fourth fr$
-syn keyword tl_keyword contained fr^ fr^$ from frr
-syn keyword tl_keyword contained fsblkcnt-t fsfilcnt-t fstat ftw
-syn keyword tl_keyword contained ftw-actionretval ftw-chdir ftw-continue ftw-d
-syn keyword tl_keyword contained ftw-depth ftw-dnr ftw-dp ftw-f
-syn keyword tl_keyword contained ftw-mount ftw-ns ftw-phys ftw-skip-siblings
-syn keyword tl_keyword contained ftw-skip-subtree ftw-sl ftw-sln ftw-stop
-syn keyword tl_keyword contained fun fun-fixparam-count fun-optparam-count fun-variadic
-syn keyword tl_keyword contained func-get-env func-get-form func-get-name func-set-env
-syn keyword tl_keyword contained functionp gamma gcd gen
-syn keyword tl_keyword contained gen-hash-seed generate gensym gequal
-syn keyword tl_keyword contained get-buf-from-stream get-byte get-char get-clobber-expander
-syn keyword tl_keyword contained get-csv get-delete-expander get-error get-error-str
+syn keyword tl_keyword contained display-width div divides dlclose
+syn keyword tl_keyword contained dlopen dlsym dlsym-checked dlvsym
+syn keyword tl_keyword contained dlvsym-checked do doc dohash
+syn keyword tl_keyword contained doloop doloop* dotimes double
+syn keyword tl_keyword contained downcase-str drem drop drop-until
+syn keyword tl_keyword contained drop-while dt-blk dt-chr dt-dir
+syn keyword tl_keyword contained dt-fifo dt-lnk dt-reg dt-sock
+syn keyword tl_keyword contained dt-unknown dump-compiled-objects dump-deferred-warnings dup
+syn keyword tl_keyword contained dupfd dwim e2big eacces
+syn keyword tl_keyword contained each each* each-false each-match
+syn keyword tl_keyword contained each-match-case each-match-case-product each-match-product each-prod
+syn keyword tl_keyword contained each-prod* each-true eaddrinuse eaddrnotavail
+syn keyword tl_keyword contained eafnosupport eagain ealready ebadf
+syn keyword tl_keyword contained ebadmsg ebusy ecanceled ecase
+syn keyword tl_keyword contained ecase* ecaseq ecaseq* ecaseql
+syn keyword tl_keyword contained ecaseql* ecasequal ecasequal* echild
+syn keyword tl_keyword contained echo echoctl echoe echok
+syn keyword tl_keyword contained echoke echonl echoprt econnaborted
+syn keyword tl_keyword contained econnrefused econnreset edeadlk edestaddrreq
+syn keyword tl_keyword contained edom edquot eexist efault
+syn keyword tl_keyword contained efbig ehostunreach eidrm eighth
+syn keyword tl_keyword contained eilseq einprogress eintr einval
+syn keyword tl_keyword contained eio eisconn eisdir elemsize
+syn keyword tl_keyword contained elemtype eloop emfile emlink
+syn keyword tl_keyword contained empty emsgsize emultihop enametoolong
+syn keyword tl_keyword contained endgrent endp endpwent ends-with
+syn keyword tl_keyword contained enetdown enetreset enetunreach enfile
+syn keyword tl_keyword contained enobufs enodata enodev enoent
+syn keyword tl_keyword contained enoexec enolck enolink enomem
+syn keyword tl_keyword contained enomsg enoprotoopt enospc enosr
+syn keyword tl_keyword contained enostr enosys enotconn enotdir
+syn keyword tl_keyword contained enotempty enotrecoverable enotsock enotsup
+syn keyword tl_keyword contained enotty ensure ensure-dir enum
+syn keyword tl_keyword contained enumed enumlet env env-fbind
+syn keyword tl_keyword contained env-fbindings env-hash env-next env-vbind
+syn keyword tl_keyword contained env-vbindings enxio eopnotsupp eoverflow
+syn keyword tl_keyword contained eownerdead eperm epipe eproto
+syn keyword tl_keyword contained eprotonosupport eprototype eq eql
+syn keyword tl_keyword contained equal equot erange erf
+syn keyword tl_keyword contained erfc erofs errno error
+syn keyword tl_keyword contained espipe esrch estale etime
+syn keyword tl_keyword contained etimedout etxtbsy etypecase eval
+syn keyword tl_keyword contained eval-only evenp ewouldblock exception-subtype-map
+syn keyword tl_keyword contained exception-subtype-p exdev exec exit
+syn keyword tl_keyword contained exit* exp exp10 exp2
+syn keyword tl_keyword contained expand expand* expand-hook-combine expand-left
+syn keyword tl_keyword contained expand-right expand-with-free-refs expm1 expt
+syn keyword tl_keyword contained exptmod extproc f$ f-dupfd
+syn keyword tl_keyword contained f-dupfd-cloexec f-getfd f-getfl f-getlk
+syn keyword tl_keyword contained f-rdlck f-setfd f-setfl f-setlk
+syn keyword tl_keyword contained f-setlkw f-unlck f-wrlck f^
+syn keyword tl_keyword contained f^$ false fboundp fcntl
+syn keyword tl_keyword contained fd-cloexec fdim ff0 ff1
+syn keyword tl_keyword contained ffdly ffi ffi-alignof ffi-arraysize
+syn keyword tl_keyword contained ffi-call ffi-elemsize ffi-elemtype ffi-get
+syn keyword tl_keyword contained ffi-in ffi-make-call-desc ffi-make-closure ffi-offsetof
+syn keyword tl_keyword contained ffi-out ffi-put ffi-put-into ffi-size
+syn keyword tl_keyword contained ffi-type-compile ffi-type-operator-p ffi-type-p ffi-typedef
+syn keyword tl_keyword contained fifth file-append file-append-buf file-append-json
+syn keyword tl_keyword contained file-append-jsons file-append-lines file-append-objects file-append-string
+syn keyword tl_keyword contained file-get file-get-buf file-get-json file-get-jsons
+syn keyword tl_keyword contained file-get-lines file-get-objects file-get-string file-place-buf
+syn keyword tl_keyword contained file-put file-put-buf file-put-json file-put-jsons
+syn keyword tl_keyword contained file-put-lines file-put-objects file-put-string fileno
+syn keyword tl_keyword contained fill-buf fill-buf-adjust fill-carray fill-obj
+syn keyword tl_keyword contained fill-vec filter-equal filter-string-tree finalize
+syn keyword tl_keyword contained find find-frame find-frames find-frames-by-mask
+syn keyword tl_keyword contained find-if find-max find-max-key find-maxes
+syn keyword tl_keyword contained find-min find-min-key find-mins find-package
+syn keyword tl_keyword contained find-struct-type find-symbol find-symbol-fb find-true
+syn keyword tl_keyword contained finish-infix first fixnum-max fixnum-min
+syn keyword tl_keyword contained fixnump flatcar flatcar* flatten
+syn keyword tl_keyword contained flatten* flet flip flipargs
+syn keyword tl_keyword contained flo-dig flo-down flo-epsilon flo-get-round-mode
+syn keyword tl_keyword contained flo-int flo-max flo-max-dig flo-min
+syn keyword tl_keyword contained flo-near flo-set-round-mode flo-str flo-up
+syn keyword tl_keyword contained flo-zero float floatp floor
+syn keyword tl_keyword contained floor-rem flow flush-stream flusho
+syn keyword tl_keyword contained fmakunbound fmax fmin fmt
+syn keyword tl_keyword contained fnm-casefold fnm-extmatch fnm-leading-dir fnm-noescape
+syn keyword tl_keyword contained fnm-pathname fnm-period fnmatch for
+syn keyword tl_keyword contained for* force force-break fork
+syn keyword tl_keyword contained format fourth fr$ fr^
+syn keyword tl_keyword contained fr^$ from frr fsblkcnt-t
+syn keyword tl_keyword contained fsfilcnt-t fstat ftw ftw-actionretval
+syn keyword tl_keyword contained ftw-chdir ftw-continue ftw-d ftw-depth
+syn keyword tl_keyword contained ftw-dnr ftw-dp ftw-f ftw-mount
+syn keyword tl_keyword contained ftw-ns ftw-phys ftw-skip-siblings ftw-skip-subtree
+syn keyword tl_keyword contained ftw-sl ftw-sln ftw-stop fun
+syn keyword tl_keyword contained fun-fixparam-count fun-optparam-count fun-variadic func-get-env
+syn keyword tl_keyword contained func-get-form func-get-name func-set-env functionp
+syn keyword tl_keyword contained gamma gcd gen gen-hash-seed
+syn keyword tl_keyword contained generate gensym gequal get-buf-from-stream
+syn keyword tl_keyword contained get-byte get-char get-clobber-expander get-csv
+syn keyword tl_keyword contained get-delete-expander get-delimited-string get-error get-error-str
syn keyword tl_keyword contained get-frames get-hash-userdata get-indent get-indent-mode
syn keyword tl_keyword contained get-json get-jsons get-line get-line-as-buf
syn keyword tl_keyword contained get-lines get-list-from-stream get-obj get-sig-handler
@@ -320,73 +326,74 @@ syn keyword tl_keyword contained hash-peek hash-proper-subset hash-props hash-re
syn keyword tl_keyword contained hash-revget hash-subset hash-symdiff hash-uni
syn keyword tl_keyword contained hash-update hash-update-1 hash-userdata hash-values
syn keyword tl_keyword contained hash-zip hashp have hist-sort
-syn keyword tl_keyword contained hist-sort-by hlet hlet* html-decode
-syn keyword tl_keyword contained html-encode html-encode* hupcl hypot
-syn keyword tl_keyword contained iapply icanon icrnl id-t
-syn keyword tl_keyword contained identity identity* ido iexten
-syn keyword tl_keyword contained if if-match ifa iff
-syn keyword tl_keyword contained iffi iflet ifx ignbrk
-syn keyword tl_keyword contained igncr ignerr ignore ignpar
-syn keyword tl_keyword contained ignwarn imaxbel improper-plist-to-alist in
-syn keyword tl_keyword contained in-package in-range in-range* in6addr-any
-syn keyword tl_keyword contained in6addr-loopback in6addr-str inaddr-any inaddr-loopback
-syn keyword tl_keyword contained inaddr-str inc inc-indent inc-indent-abs
-syn keyword tl_keyword contained indent-code indent-data indent-foff indent-off
-syn keyword tl_keyword contained inhash inlcr ino-t inpck
-syn keyword tl_keyword contained int int-buf int-carray int-chr
-syn keyword tl_keyword contained int-cptr int-flo int-ptr-t int-str
-syn keyword tl_keyword contained int16 int32 int64 int8
-syn keyword tl_keyword contained integerp intern intern-fb interp-fun-p
-syn keyword tl_keyword contained interpose intmax-t inv-cum-norm invoke-catch
-syn keyword tl_keyword contained ip ipf ipproto-ip ipproto-ipv6
-syn keyword tl_keyword contained ipproto-tcp ipproto-udp ipv6-join-group ipv6-leave-group
-syn keyword tl_keyword contained ipv6-multicast-hops ipv6-multicast-if ipv6-multicast-loop ipv6-unicast-hops
-syn keyword tl_keyword contained ipv6-v6only iread isatty isec
-syn keyword tl_keyword contained isecp isig isqrt istrip
-syn keyword tl_keyword contained iter-begin iter-cat iter-item iter-more
-syn keyword tl_keyword contained iter-reset iter-step iterable iterp
-syn keyword tl_keyword contained itimer-prof itimer-real itimer-virtual iuclc
-syn keyword tl_keyword contained iutf8 ixany ixoff ixon
-syn keyword tl_keyword contained j0 j1 jmp-buf jn
-syn keyword tl_keyword contained join join-with json juxt
-syn keyword tl_keyword contained keep keep-if keep-if* keep-keys-if
-syn keyword tl_keyword contained keep-match-products keep-matches keepq keepql
-syn keyword tl_keyword contained keepqual key key-t keyword-package
-syn keyword tl_keyword contained keywordp kill labels lambda
-syn keyword tl_keyword contained lambda-match last lazy-str lazy-str-force
-syn keyword tl_keyword contained lazy-str-force-upto lazy-str-get-trailing-list lazy-stream-cons lazy-stringp
-syn keyword tl_keyword contained lchown lcm lcons lcons-car
-syn keyword tl_keyword contained lcons-cdr lcons-force lcons-fun lconsp
-syn keyword tl_keyword contained ldexp ldiff ldo le-double
-syn keyword tl_keyword contained le-float le-int16 le-int32 le-int64
-syn keyword tl_keyword contained le-uint16 le-uint32 le-uint64 left
-syn keyword tl_keyword contained len length length-< length-buf
-syn keyword tl_keyword contained length-carray length-list length-list-< length-str
-syn keyword tl_keyword contained length-str-< length-str-<= length-str-> length-str->=
-syn keyword tl_keyword contained length-vec lequal less let
-syn keyword tl_keyword contained let* letrec lexical-binding-kind lexical-fun-binding-kind
-syn keyword tl_keyword contained lexical-fun-p lexical-lisp1-binding lexical-macro-p lexical-symacro-p
-syn keyword tl_keyword contained lexical-var-p lflow lgamma lib-version
-syn keyword tl_keyword contained link lisp-parse list list*
-syn keyword tl_keyword contained list-carray list-seq list-str list-vec
-syn keyword tl_keyword contained list-vector listp lnew lnew*
-syn keyword tl_keyword contained load load-args-process load-args-recurse load-for
-syn keyword tl_keyword contained load-time loand loff-t log
-syn keyword tl_keyword contained log-alert log-auth log-authpriv log-cons
-syn keyword tl_keyword contained log-crit log-daemon log-debug log-emerg
-syn keyword tl_keyword contained log-err log-info log-ndelay log-notice
-syn keyword tl_keyword contained log-nowait log-odelay log-perror log-pid
-syn keyword tl_keyword contained log-user log-warning log10 log1p
-syn keyword tl_keyword contained log2 logand logb logcount
-syn keyword tl_keyword contained logior lognot logtest logtrunc
-syn keyword tl_keyword contained logxor long long-suffix longjmp
-syn keyword tl_keyword contained longlong lop lop1 lopf
-syn keyword tl_keyword contained lopip lset lstat lutimes
-syn keyword tl_keyword contained m$ m^ m^$ mac-env-param-bind
-syn keyword tl_keyword contained mac-param-bind macro-ancestor macro-form-p macro-time
-syn keyword tl_keyword contained macroexpand macroexpand-1 macroexpand-1-lisp1 macroexpand-1-place
-syn keyword tl_keyword contained macroexpand-lisp1 macroexpand-match macroexpand-params macroexpand-place
-syn keyword tl_keyword contained macroexpand-struct-clause macrolet madv-dodump madv-dofork
+syn keyword tl_keyword contained hist-sort-by hlet hlet* hmac-md5
+syn keyword tl_keyword contained hmac-sha1 hmac-sha256 html-decode html-encode
+syn keyword tl_keyword contained html-encode* hupcl hypot iapply
+syn keyword tl_keyword contained icanon icrnl id-t identity
+syn keyword tl_keyword contained identity* ido iexten if
+syn keyword tl_keyword contained if-match ifa iff iffi
+syn keyword tl_keyword contained iflet ifx ignbrk igncr
+syn keyword tl_keyword contained ignerr ignore ignpar ignwarn
+syn keyword tl_keyword contained imaxbel improper-plist-to-alist in in-package
+syn keyword tl_keyword contained in-range in-range* in6addr-any in6addr-loopback
+syn keyword tl_keyword contained in6addr-str inaddr-any inaddr-loopback inaddr-str
+syn keyword tl_keyword contained inc inc-indent inc-indent-abs indent-code
+syn keyword tl_keyword contained indent-data indent-foff indent-off inhash
+syn keyword tl_keyword contained inlcr ino-t inpck int
+syn keyword tl_keyword contained int-buf int-carray int-chr int-cptr
+syn keyword tl_keyword contained int-flo int-ptr-t int-str int16
+syn keyword tl_keyword contained int32 int64 int8 integerp
+syn keyword tl_keyword contained intern intern-fb interp-fun-p interpose
+syn keyword tl_keyword contained intmax-t inv-cum-norm invoke-catch ip
+syn keyword tl_keyword contained ipf ipproto-ip ipproto-ipv6 ipproto-tcp
+syn keyword tl_keyword contained ipproto-udp ipv6-join-group ipv6-leave-group ipv6-multicast-hops
+syn keyword tl_keyword contained ipv6-multicast-if ipv6-multicast-loop ipv6-unicast-hops ipv6-v6only
+syn keyword tl_keyword contained iread isatty isec isecp
+syn keyword tl_keyword contained isig isqrt istrip iter-begin
+syn keyword tl_keyword contained iter-cat iter-item iter-more iter-reset
+syn keyword tl_keyword contained iter-step iterable iterp itimer-prof
+syn keyword tl_keyword contained itimer-real itimer-virtual iuclc iutf8
+syn keyword tl_keyword contained ixany ixoff ixon j0
+syn keyword tl_keyword contained j1 jmp-buf jn join
+syn keyword tl_keyword contained join-with json juxt keep
+syn keyword tl_keyword contained keep-if keep-if* keep-keys-if keep-match-case-products
+syn keyword tl_keyword contained keep-match-cases keep-match-products keep-matches keepq
+syn keyword tl_keyword contained keepql keepqual key key-t
+syn keyword tl_keyword contained keyword-package keywordp kill labels
+syn keyword tl_keyword contained lambda lambda-match last lazy-str
+syn keyword tl_keyword contained lazy-str-force lazy-str-force-upto lazy-str-get-trailing-list lazy-stream-cons
+syn keyword tl_keyword contained lazy-stringp lchown lcm lcons
+syn keyword tl_keyword contained lcons-car lcons-cdr lcons-force lcons-fun
+syn keyword tl_keyword contained lconsp ldexp ldiff ldo
+syn keyword tl_keyword contained le-double le-float le-int16 le-int32
+syn keyword tl_keyword contained le-int64 le-uint16 le-uint32 le-uint64
+syn keyword tl_keyword contained left len length length-<
+syn keyword tl_keyword contained length-buf length-carray length-list length-list-<
+syn keyword tl_keyword contained length-str length-str-< length-str-<= length-str->
+syn keyword tl_keyword contained length-str->= length-vec lequal less
+syn keyword tl_keyword contained let let* letrec lexical-binding-kind
+syn keyword tl_keyword contained lexical-fun-binding-kind lexical-fun-p lexical-lisp1-binding lexical-macro-p
+syn keyword tl_keyword contained lexical-symacro-p lexical-var-p lflow lgamma
+syn keyword tl_keyword contained lib-version link lisp-parse list
+syn keyword tl_keyword contained list* list-carray list-seq list-str
+syn keyword tl_keyword contained list-vec list-vector listp lnew
+syn keyword tl_keyword contained lnew* load load-args-process load-args-recurse
+syn keyword tl_keyword contained load-for load-time loand loff-t
+syn keyword tl_keyword contained log log-alert log-auth log-authpriv
+syn keyword tl_keyword contained log-cons log-crit log-daemon log-debug
+syn keyword tl_keyword contained log-emerg log-err log-info log-ndelay
+syn keyword tl_keyword contained log-notice log-nowait log-odelay log-perror
+syn keyword tl_keyword contained log-pid log-user log-warning log10
+syn keyword tl_keyword contained log1p log2 logand logb
+syn keyword tl_keyword contained logcount logior lognot logtest
+syn keyword tl_keyword contained logtrunc logxor long long-suffix
+syn keyword tl_keyword contained longjmp longlong lop lop1
+syn keyword tl_keyword contained lopf lopip lset lstat
+syn keyword tl_keyword contained lutimes m$ m^ m^$
+syn keyword tl_keyword contained mac-env-param-bind mac-param-bind macro-ancestor macro-form-p
+syn keyword tl_keyword contained macro-time macroexpand macroexpand-1 macroexpand-1-lisp1
+syn keyword tl_keyword contained macroexpand-1-place macroexpand-lisp1 macroexpand-match macroexpand-params
+syn keyword tl_keyword contained macroexpand-place macroexpand-struct-clause madv-dodump madv-dofork
syn keyword tl_keyword contained madv-dontdump madv-dontfork madv-dontneed madv-free
syn keyword tl_keyword contained madv-hugepage madv-hwpoison madv-keeponfork madv-mergeable
syn keyword tl_keyword contained madv-nohugepage madv-normal madv-random madv-remove
@@ -420,158 +427,159 @@ syn keyword tl_keyword contained mkdir mkdtemp mkfifo mknod
syn keyword tl_keyword contained mkstemp mkstring mlet mmakunbound
syn keyword tl_keyword contained mmap mod mode-t mprotect
syn keyword tl_keyword contained mref ms-async ms-invalidate ms-sync
-syn keyword tl_keyword contained msync mul-each mul-each* mul-each-prod
-syn keyword tl_keyword contained mul-each-prod* multi multi-sort munmap
-syn keyword tl_keyword contained n-choose-k n-perm-k nand nandf
-syn keyword tl_keyword contained nconc nearbyint neg neq
-syn keyword tl_keyword contained neql nequal nested-vec nested-vec-of
-syn keyword tl_keyword contained new new* nexpand-left nextafter
-syn keyword tl_keyword contained nil nilf ninth nl0
-syn keyword tl_keyword contained nl1 nldly nlink-t noflsh
-syn keyword tl_keyword contained none nor norf not
-syn keyword tl_keyword contained notf nreconc nreverse nrot
-syn keyword tl_keyword contained nshuffle nsort nth nthcdr
-syn keyword tl_keyword contained nthlast null nullify num-chr
-syn keyword tl_keyword contained num-str numberp nzerop o-accmode
-syn keyword tl_keyword contained o-append o-async o-cloexec o-creat
-syn keyword tl_keyword contained o-direct o-directory o-noatime o-noctty
-syn keyword tl_keyword contained o-nofollow o-nonblock o-path o-rdonly
-syn keyword tl_keyword contained o-rdwr o-sync o-trunc o-wronly
-syn keyword tl_keyword contained oand obtain obtain* obtain*-block
-syn keyword tl_keyword contained obtain-block ocrnl oddp ofdel
-syn keyword tl_keyword contained off-t offsetof ofill olcuc
-syn keyword tl_keyword contained onlcr onlret onocr op
-syn keyword tl_keyword contained open-command open-directory open-file open-fileno
-syn keyword tl_keyword contained open-files open-files* open-pipe open-process
-syn keyword tl_keyword contained open-socket open-socket-pair open-subprocess open-tail
-syn keyword tl_keyword contained opendir openlog opf opip
-syn keyword tl_keyword contained opost opt opthelp opthelp-conventions
-syn keyword tl_keyword contained opthelp-types or orf pack
-syn keyword tl_keyword contained package-alist package-fallback-list package-foreign-symbols package-local-symbols
-syn keyword tl_keyword contained package-name package-symbols packagep pad
-syn keyword tl_keyword contained page-size pairlis parenb parmrk
-syn keyword tl_keyword contained parodd parse-errors parse-infix partition
-syn keyword tl_keyword contained partition* partition-by partition-if path-blkdev-p
-syn keyword tl_keyword contained path-cat path-chrdev-p path-components-safe path-dir-empty
-syn keyword tl_keyword contained path-dir-p path-equal path-executable-to-me-p path-exists-p
-syn keyword tl_keyword contained path-file-p path-mine-p path-my-group-p path-newer
-syn keyword tl_keyword contained path-older path-pipe-p path-private-to-me-p path-read-writable-to-me-p
-syn keyword tl_keyword contained path-readable-to-me-p path-safe-sticky-dir path-same-object path-search
-syn keyword tl_keyword contained path-sep-chars path-setgid-p path-setuid-p path-sock-p
-syn keyword tl_keyword contained path-sticky-p path-strictly-private-to-me-p path-symlink-p path-writable-to-me-p
-syn keyword tl_keyword contained pdec pendin perm permi
-syn keyword tl_keyword contained pic pid-t pinc pipe
-syn keyword tl_keyword contained place-form-p placelet placelet* plist-to-alist
-syn keyword tl_keyword contained plusp poll poll-err poll-in
-syn keyword tl_keyword contained poll-nval poll-out poll-pri poll-rdband
-syn keyword tl_keyword contained poll-rdhup poll-wrband poly pop
-syn keyword tl_keyword contained pop-after-load portable-abs-path-p pos pos-if
-syn keyword tl_keyword contained pos-max pos-min posq posql
-syn keyword tl_keyword contained posqual pppred ppred pprinl
-syn keyword tl_keyword contained pprint pprof pred prinl
-syn keyword tl_keyword contained print prod prof prog
-syn keyword tl_keyword contained prog* prog1 prog2 progn
-syn keyword tl_keyword contained progv promisep prop proper-list-p
-syn keyword tl_keyword contained proper-listp prot-exec prot-growsdown prot-growsup
-syn keyword tl_keyword contained prot-none prot-read prot-write pset
-syn keyword tl_keyword contained ptr ptr-in ptr-in-d ptr-out
-syn keyword tl_keyword contained ptr-out-d ptr-out-s ptrdiff-t pub:txr-sym
-syn keyword tl_keyword contained pure-rel-path-p purge-deferred-warning push push-after-load
-syn keyword tl_keyword contained pushhash pushnew put-buf put-byte
-syn keyword tl_keyword contained put-carray put-char put-csv put-json
-syn keyword tl_keyword contained put-jsonl put-jsons put-line put-lines
-syn keyword tl_keyword contained put-obj put-string put-strings pwd
-syn keyword tl_keyword contained qquote qref quantile quip
-syn keyword tl_keyword contained quote r$ r^ r^$
-syn keyword tl_keyword contained raise rand random random-buf
-syn keyword tl_keyword contained random-fixnum random-float random-float-incl random-sample
-syn keyword tl_keyword contained random-state-get-vec random-state-p range range*
-syn keyword tl_keyword contained range-regex rangep rangeref rassoc
-syn keyword tl_keyword contained rassq rassql rcomb rcombi
-syn keyword tl_keyword contained rcons read read-objects read-once
-syn keyword tl_keyword contained read-until-match readdir readlink real-time-stream-p
-syn keyword tl_keyword contained realpath record-adapter reduce-left reduce-right
-syn keyword tl_keyword contained ref refset regex-compile regex-from-trie
-syn keyword tl_keyword contained regex-optimize regex-parse regex-prefix-match regex-source
-syn keyword tl_keyword contained regexp register-exception-subtypes register-tentative-def regsub
-syn keyword tl_keyword contained rehome-sym reject rel-path relate
-syn keyword tl_keyword contained release-deferred-warnings remainder remhash remove
-syn keyword tl_keyword contained remove-if remove-if* remove-path remove-path-rec
-syn keyword tl_keyword contained remq remq* remql remql*
-syn keyword tl_keyword contained remqual remqual* rename-path repeat
-syn keyword tl_keyword contained replace replace-buf replace-env replace-list
-syn keyword tl_keyword contained replace-str replace-struct replace-tree-iter replace-vec
-syn keyword tl_keyword contained reset-struct rest ret retf
-syn keyword tl_keyword contained return return* return-from revappend
-syn keyword tl_keyword contained reverse rfind rfind-if right
-syn keyword tl_keyword contained rint rlcp rlcp-tree rlet
-syn keyword tl_keyword contained rlim-infinity rlim-saved-cur rlim-saved-max rlimit-as
-syn keyword tl_keyword contained rlimit-core rlimit-cpu rlimit-data rlimit-fsize
-syn keyword tl_keyword contained rlimit-nofile rlimit-stack rlink rlist
-syn keyword tl_keyword contained rlist* rmdir rmember rmember-if
-syn keyword tl_keyword contained rmemq rmemql rmemqual rmismatch
-syn keyword tl_keyword contained rot rotate round round-rem
-syn keyword tl_keyword contained rperm rpermi rplaca rplacd
-syn keyword tl_keyword contained rpoly rpos rpos-if rposq
-syn keyword tl_keyword contained rposql rposqual rr rra
-syn keyword tl_keyword contained rsearch rslot rtld-deepbind rtld-global
-syn keyword tl_keyword contained rtld-lazy rtld-local rtld-nodelete rtld-noload
-syn keyword tl_keyword contained rtld-now run s-ifblk s-ifchr
-syn keyword tl_keyword contained s-ifdir s-ififo s-iflnk s-ifmt
-syn keyword tl_keyword contained s-ifreg s-ifsock s-irgrp s-iroth
-syn keyword tl_keyword contained s-irusr s-irwxg s-irwxo s-irwxu
-syn keyword tl_keyword contained s-isgid s-isuid s-isvtx s-iwgrp
-syn keyword tl_keyword contained s-iwoth s-iwusr s-ixgrp s-ixoth
-syn keyword tl_keyword contained s-ixusr save-exe sbit scalb
-syn keyword tl_keyword contained scalbln scan-until-match search search-all
-syn keyword tl_keyword contained search-regex search-regst search-str search-str-tree
-syn keyword tl_keyword contained second seek-cur seek-end seek-set
-syn keyword tl_keyword contained seek-stream select self-load-path self-path
-syn keyword tl_keyword contained separate separate-keys seq-begin seq-like
-syn keyword tl_keyword contained seq-next seq-reset seqp set
-syn keyword tl_keyword contained set-diff set-hash-userdata set-indent set-indent-mode
-syn keyword tl_keyword contained set-key set-left set-mask set-max-depth
-syn keyword tl_keyword contained set-max-length set-package-fallback-list set-right set-sig-handler
-syn keyword tl_keyword contained set-stack-limit setegid setenv seteuid
-syn keyword tl_keyword contained setgid setgrent setgroups sethash
-syn keyword tl_keyword contained setitimer setjmp setlogmask setpwent
-syn keyword tl_keyword contained setresgid setresuid setrlimit setuid
-syn keyword tl_keyword contained seventh sh sh-esc sh-esc-all
-syn keyword tl_keyword contained sh-esc-dq sh-esc-sq sha1 sha1-begin
-syn keyword tl_keyword contained sha1-end sha1-hash sha1-stream sha256
-syn keyword tl_keyword contained sha256-begin sha256-end sha256-hash sha256-stream
-syn keyword tl_keyword contained shift short short-suffix shuffle
-syn keyword tl_keyword contained shut-rd shut-rdwr shut-wr sig-abrt
-syn keyword tl_keyword contained sig-alrm sig-atomic-t sig-bus sig-check
-syn keyword tl_keyword contained sig-chld sig-cont sig-fpe sig-hup
-syn keyword tl_keyword contained sig-ill sig-int sig-io sig-iot
-syn keyword tl_keyword contained sig-kill sig-pipe sig-poll sig-prof
-syn keyword tl_keyword contained sig-pwr sig-quit sig-segv sig-stkflt
-syn keyword tl_keyword contained sig-stop sig-sys sig-term sig-trap
-syn keyword tl_keyword contained sig-tstp sig-ttin sig-ttou sig-urg
-syn keyword tl_keyword contained sig-usr1 sig-usr2 sig-vtalrm sig-winch
-syn keyword tl_keyword contained sig-xcpu sig-xfsz sign-extend significand
-syn keyword tl_keyword contained signum sin sinh sixth
-syn keyword tl_keyword contained size-t size-vec sizeof slet
-syn keyword tl_keyword contained slot slotp slots slotset
-syn keyword tl_keyword contained snsort so-acceptconn so-broadcast so-debug
-syn keyword tl_keyword contained so-dontroute so-error so-keepalive so-linger
-syn keyword tl_keyword contained so-oobinline so-rcvbuf so-rcvlowat so-rcvtimeo
-syn keyword tl_keyword contained so-reuseaddr so-sndbuf so-sndlowat so-sndtimeo
-syn keyword tl_keyword contained so-type sock-accept sock-bind sock-cloexec
-syn keyword tl_keyword contained sock-connect sock-dgram sock-family sock-listen
-syn keyword tl_keyword contained sock-nonblock sock-opt sock-peer sock-recv-timeout
-syn keyword tl_keyword contained sock-send-timeout sock-set-opt sock-set-peer sock-shutdown
-syn keyword tl_keyword contained sock-stream sock-type sockaddr-str socklen-t
-syn keyword tl_keyword contained sol-socket some some-false some-true
-syn keyword tl_keyword contained sort sort-group source-loc source-loc-str
-syn keyword tl_keyword contained span-str special-operator-p special-var-p spl
-syn keyword tl_keyword contained splice split split* split-str
-syn keyword tl_keyword contained split-str-set spln sqrt square
-syn keyword tl_keyword contained ssize-t ssort sspl sssucc
-syn keyword tl_keyword contained ssucc starts-with stat static-slot
-syn keyword tl_keyword contained static-slot-ensure static-slot-home static-slot-p static-slot-set
-syn keyword tl_keyword contained stdlib str str-buf str-d
+syn keyword tl_keyword contained msync mul mul-each mul-each*
+syn keyword tl_keyword contained mul-each-prod mul-each-prod* multi multi-sort
+syn keyword tl_keyword contained munmap n-choose-k n-perm-k nand
+syn keyword tl_keyword contained nandf nconc nearbyint neg
+syn keyword tl_keyword contained neq neql nequal nested-vec
+syn keyword tl_keyword contained nested-vec-of new new* nexpand-left
+syn keyword tl_keyword contained nextafter nil nilf ninth
+syn keyword tl_keyword contained nl0 nl1 nldly nlink-t
+syn keyword tl_keyword contained noexpand noflsh none nor
+syn keyword tl_keyword contained norf not notf nreconc
+syn keyword tl_keyword contained nreverse nrot nshuffle nsort
+syn keyword tl_keyword contained nth nthcdr nthlast null
+syn keyword tl_keyword contained nullify num-chr num-str numberp
+syn keyword tl_keyword contained nzerop o-accmode o-append o-async
+syn keyword tl_keyword contained o-cloexec o-creat o-direct o-directory
+syn keyword tl_keyword contained o-noatime o-noctty o-nofollow o-nonblock
+syn keyword tl_keyword contained o-path o-rdonly o-rdwr o-sync
+syn keyword tl_keyword contained o-trunc o-wronly oand obtain
+syn keyword tl_keyword contained obtain* obtain*-block obtain-block ocrnl
+syn keyword tl_keyword contained oddp ofdel off-t offsetof
+syn keyword tl_keyword contained ofill olcuc onlcr onlret
+syn keyword tl_keyword contained onocr op open-command open-directory
+syn keyword tl_keyword contained open-file open-fileno open-files open-files*
+syn keyword tl_keyword contained open-pipe open-process open-socket open-socket-pair
+syn keyword tl_keyword contained open-subprocess open-tail opendir openlog
+syn keyword tl_keyword contained opf opip opost opt
+syn keyword tl_keyword contained opthelp opthelp-conventions opthelp-types or
+syn keyword tl_keyword contained orf pack package-alist package-fallback-list
+syn keyword tl_keyword contained package-foreign-symbols package-local-symbols package-name package-symbols
+syn keyword tl_keyword contained packagep pad page-size pairlis
+syn keyword tl_keyword contained parenb parmrk parodd parse-errors
+syn keyword tl_keyword contained parse-infix partition partition* partition-by
+syn keyword tl_keyword contained partition-if path-blkdev-p path-cat path-chrdev-p
+syn keyword tl_keyword contained path-components-safe path-dir-empty path-dir-p path-equal
+syn keyword tl_keyword contained path-executable-to-me-p path-exists-p path-file-p path-mine-p
+syn keyword tl_keyword contained path-my-group-p path-newer path-older path-pipe-p
+syn keyword tl_keyword contained path-private-to-me-p path-read-writable-to-me-p path-readable-to-me-p path-safe-sticky-dir
+syn keyword tl_keyword contained path-same-object path-search path-sep-chars path-setgid-p
+syn keyword tl_keyword contained path-setuid-p path-sock-p path-sticky-p path-strictly-private-to-me-p
+syn keyword tl_keyword contained path-symlink-p path-writable-to-me-p pdec pendin
+syn keyword tl_keyword contained perm permi pic pid-t
+syn keyword tl_keyword contained pinc pipe place-form-p placelet
+syn keyword tl_keyword contained placelet* plist-to-alist plusp poll
+syn keyword tl_keyword contained poll-err poll-in poll-nval poll-out
+syn keyword tl_keyword contained poll-pri poll-rdband poll-rdhup poll-wrband
+syn keyword tl_keyword contained poly pop pop-after-load portable-abs-path-p
+syn keyword tl_keyword contained pos pos-if pos-max pos-min
+syn keyword tl_keyword contained posq posql posqual pppred
+syn keyword tl_keyword contained ppred pprinl pprint pprof
+syn keyword tl_keyword contained pred prinl print prod
+syn keyword tl_keyword contained prof prog prog* prog1
+syn keyword tl_keyword contained prog2 progf progn progv
+syn keyword tl_keyword contained promisep prop proper-list-p proper-listp
+syn keyword tl_keyword contained prot-exec prot-growsdown prot-growsup prot-none
+syn keyword tl_keyword contained prot-read prot-write pset ptr
+syn keyword tl_keyword contained ptr-in ptr-in-d ptr-out ptr-out-d
+syn keyword tl_keyword contained ptr-out-s ptrdiff-t pub:txr-sym pure-rel-path-p
+syn keyword tl_keyword contained purge-deferred-warning push push-after-load pushhash
+syn keyword tl_keyword contained pushnew put-buf put-byte put-carray
+syn keyword tl_keyword contained put-char put-csv put-json put-jsonl
+syn keyword tl_keyword contained put-jsons put-line put-lines put-obj
+syn keyword tl_keyword contained put-string put-strings pwd qquote
+syn keyword tl_keyword contained qref quantile quip quote
+syn keyword tl_keyword contained r$ r^ r^$ raise
+syn keyword tl_keyword contained rand random random-buf random-fixnum
+syn keyword tl_keyword contained random-float random-float-incl random-sample random-state-get-vec
+syn keyword tl_keyword contained random-state-p range range* range-regex
+syn keyword tl_keyword contained rangep rangeref rassoc rassq
+syn keyword tl_keyword contained rassql rcomb rcombi rcons
+syn keyword tl_keyword contained read read-objects read-once read-until-match
+syn keyword tl_keyword contained readdir readlink real-time-stream-p realpath
+syn keyword tl_keyword contained record-adapter reduce-left reduce-right ref
+syn keyword tl_keyword contained refset regex-compile regex-from-trie regex-optimize
+syn keyword tl_keyword contained regex-parse regex-prefix-match regex-source regexp
+syn keyword tl_keyword contained register-exception-subtypes register-tentative-def regsub rehome-sym
+syn keyword tl_keyword contained reject rel-path relate release-deferred-warnings
+syn keyword tl_keyword contained remainder remhash remove remove-if
+syn keyword tl_keyword contained remove-if* remove-path remove-path-rec remq
+syn keyword tl_keyword contained remq* remql remql* remqual
+syn keyword tl_keyword contained remqual* rename-path repeat replace
+syn keyword tl_keyword contained replace-buf replace-env replace-list replace-str
+syn keyword tl_keyword contained replace-struct replace-tree-iter replace-vec reset-struct
+syn keyword tl_keyword contained rest ret retf return
+syn keyword tl_keyword contained return* return-from revappend reverse
+syn keyword tl_keyword contained rfind rfind-if right rint
+syn keyword tl_keyword contained rlcp rlcp-tree rlet rlim-infinity
+syn keyword tl_keyword contained rlim-saved-cur rlim-saved-max rlimit-as rlimit-core
+syn keyword tl_keyword contained rlimit-cpu rlimit-data rlimit-fsize rlimit-nofile
+syn keyword tl_keyword contained rlimit-stack rlink rlist rlist*
+syn keyword tl_keyword contained rmdir rmember rmember-if rmemq
+syn keyword tl_keyword contained rmemql rmemqual rmismatch rot
+syn keyword tl_keyword contained rotate round round-rem rperm
+syn keyword tl_keyword contained rpermi rplaca rplacd rpoly
+syn keyword tl_keyword contained rpos rpos-if rposq rposql
+syn keyword tl_keyword contained rposqual rr rra rsearch
+syn keyword tl_keyword contained rslot rtld-deepbind rtld-global rtld-lazy
+syn keyword tl_keyword contained rtld-local rtld-nodelete rtld-noload rtld-now
+syn keyword tl_keyword contained run s-ifblk s-ifchr s-ifdir
+syn keyword tl_keyword contained s-ififo s-iflnk s-ifmt s-ifreg
+syn keyword tl_keyword contained s-ifsock s-irgrp s-iroth s-irusr
+syn keyword tl_keyword contained s-irwxg s-irwxo s-irwxu s-isgid
+syn keyword tl_keyword contained s-isuid s-isvtx s-iwgrp s-iwoth
+syn keyword tl_keyword contained s-iwusr s-ixgrp s-ixoth s-ixusr
+syn keyword tl_keyword contained save-exe sbit scalb scalbln
+syn keyword tl_keyword contained scan-until-match search search-all search-regex
+syn keyword tl_keyword contained search-regst search-str search-str-tree second
+syn keyword tl_keyword contained seek-cur seek-end seek-set seek-stream
+syn keyword tl_keyword contained select self-load-path self-path separate
+syn keyword tl_keyword contained separate-keys seq-begin seq-like seq-next
+syn keyword tl_keyword contained seq-reset seqp set set-diff
+syn keyword tl_keyword contained set-hash-userdata set-indent set-indent-mode set-key
+syn keyword tl_keyword contained set-left set-mask set-max-depth set-max-length
+syn keyword tl_keyword contained set-package-fallback-list set-right set-sig-handler set-stack-limit
+syn keyword tl_keyword contained setegid setenv seteuid setgid
+syn keyword tl_keyword contained setgrent setgroups sethash setitimer
+syn keyword tl_keyword contained setjmp setlogmask setpwent setresgid
+syn keyword tl_keyword contained setresuid setrlimit setuid seventh
+syn keyword tl_keyword contained sh sh-esc sh-esc-all sh-esc-dq
+syn keyword tl_keyword contained sh-esc-sq sha1 sha1-begin sha1-end
+syn keyword tl_keyword contained sha1-hash sha1-stream sha256 sha256-begin
+syn keyword tl_keyword contained sha256-end sha256-hash sha256-stream shift
+syn keyword tl_keyword contained short short-suffix shuffle shut-rd
+syn keyword tl_keyword contained shut-rdwr shut-wr sig-abrt sig-alrm
+syn keyword tl_keyword contained sig-atomic-t sig-bus sig-check sig-chld
+syn keyword tl_keyword contained sig-cont sig-fpe sig-hup sig-ill
+syn keyword tl_keyword contained sig-int sig-io sig-iot sig-kill
+syn keyword tl_keyword contained sig-pipe sig-poll sig-prof sig-pwr
+syn keyword tl_keyword contained sig-quit sig-segv sig-stkflt sig-stop
+syn keyword tl_keyword contained sig-sys sig-term sig-trap sig-tstp
+syn keyword tl_keyword contained sig-ttin sig-ttou sig-urg sig-usr1
+syn keyword tl_keyword contained sig-usr2 sig-vtalrm sig-winch sig-xcpu
+syn keyword tl_keyword contained sig-xfsz sign-extend significand signum
+syn keyword tl_keyword contained sin sinh sixth size-t
+syn keyword tl_keyword contained size-vec sizeof slet slot
+syn keyword tl_keyword contained slotp slots slotset snsort
+syn keyword tl_keyword contained so-acceptconn so-broadcast so-debug so-dontroute
+syn keyword tl_keyword contained so-error so-keepalive so-linger so-oobinline
+syn keyword tl_keyword contained so-rcvbuf so-rcvlowat so-rcvtimeo so-reuseaddr
+syn keyword tl_keyword contained so-sndbuf so-sndlowat so-sndtimeo so-type
+syn keyword tl_keyword contained sock-accept sock-bind sock-cloexec sock-connect
+syn keyword tl_keyword contained sock-dgram sock-family sock-listen sock-nonblock
+syn keyword tl_keyword contained sock-opt sock-peer sock-recv-timeout sock-send-timeout
+syn keyword tl_keyword contained sock-set-opt sock-set-peer sock-shutdown sock-stream
+syn keyword tl_keyword contained sock-type sockaddr-str socklen-t sol-socket
+syn keyword tl_keyword contained some some-false some-true sort
+syn keyword tl_keyword contained sort-group source-loc source-loc-str span-str
+syn keyword tl_keyword contained special-operator-p special-var-p spl split
+syn keyword tl_keyword contained split* split-str split-str-set spln
+syn keyword tl_keyword contained sqrt square ssize-t ssort
+syn keyword tl_keyword contained sspl sssucc ssucc starts-with
+syn keyword tl_keyword contained stat static-slot static-slot-ensure static-slot-home
+syn keyword tl_keyword contained static-slot-p static-slot-set stdlib str
+syn keyword tl_keyword contained str-buf str-compress str-d str-decompress
syn keyword tl_keyword contained str-esc str-in6addr str-in6addr-net str-inaddr
syn keyword tl_keyword contained str-inaddr-net str-s str-seq str<
syn keyword tl_keyword contained str<= str= str> str>=
@@ -585,27 +593,28 @@ syn keyword tl_keyword contained sub-list sub-str sub-tree sub-vec
syn keyword tl_keyword contained subq subql subqual subst
syn keyword tl_keyword contained subtypep succ sum sum-each
syn keyword tl_keyword contained sum-each* sum-each-prod sum-each-prod* super
-syn keyword tl_keyword contained super-method suspend swap symacrolet
-syn keyword tl_keyword contained symbol-function symbol-macro symbol-name symbol-package
-syn keyword tl_keyword contained symbol-value symbolp symdiff symlink
-syn keyword tl_keyword contained sys:%backpatch-high16% sys:%backpatch-low16% sys:%big-endian% sys:%bin-op%
-syn keyword tl_keyword contained sys:%bin-ops% sys:%block-using-funs% sys:%call-op% sys:%const-foldable%
-syn keyword tl_keyword contained sys:%const-foldable-funs% sys:%dbg-command-env% sys:%dbg-commands% sys:%effect-free%
-syn keyword tl_keyword contained sys:%effect-free-funs% sys:%eval-cache% sys:%functional% sys:%functional-funs%
-syn keyword tl_keyword contained sys:%gcall-op% sys:%lev-bits% sys:%lev-size% sys:%max-lambda-fixed-args%
-syn keyword tl_keyword contained sys:%max-lev% sys:%max-lev-idx% sys:%max-sm-lev% sys:%max-sm-lev-idx%
-syn keyword tl_keyword contained sys:%max-v-lev% sys:%nary-ops% sys:%oc-code% sys:%oc-hash%
-syn keyword tl_keyword contained sys:%oc-list-builder% sys:%package-manip% sys:%param-info% sys:%quip-rand-state%
-syn keyword tl_keyword contained sys:%quips% sys:%shuffled-quips% sys:%sm-lev-bits% sys:%sm-lev-size%
-syn keyword tl_keyword contained sys:%test-funs% sys:%test-funs-neg% sys:%test-funs-ops% sys:%test-funs-pos%
-syn keyword tl_keyword contained sys:%test-inv% sys:%test-opcode% sys:%tlo-ver% sys:%warning-syms%
-syn keyword tl_keyword contained sys:*dedup* sys:*emit* sys:*eval* sys:*in-compilation-unit*
+syn keyword tl_keyword contained super-method suspend swap symbol-function
+syn keyword tl_keyword contained symbol-macro symbol-name symbol-package symbol-value
+syn keyword tl_keyword contained symbolp symdiff symlink sys:%backpatch-high16%
+syn keyword tl_keyword contained sys:%backpatch-low16% sys:%big-endian% sys:%bin-op% sys:%bin-ops%
+syn keyword tl_keyword contained sys:%block-using-funs% sys:%call-op% sys:%const-foldable% sys:%const-foldable-funs%
+syn keyword tl_keyword contained sys:%dbg-command-env% sys:%dbg-commands% sys:%effect-free% sys:%effect-free-funs%
+syn keyword tl_keyword contained sys:%eval-cache% sys:%functional% sys:%functional-funs% sys:%gcall-op%
+syn keyword tl_keyword contained sys:%lev-bits% sys:%lev-size% sys:%max-lambda-fixed-args% sys:%max-lev%
+syn keyword tl_keyword contained sys:%max-lev-idx% sys:%max-sm-lev% sys:%max-sm-lev-idx% sys:%max-v-lev%
+syn keyword tl_keyword contained sys:%nary-ops% sys:%oc-code% sys:%oc-hash% sys:%oc-list-builder%
+syn keyword tl_keyword contained sys:%package-manip% sys:%param-info% sys:%quip-rand-state% sys:%quips%
+syn keyword tl_keyword contained sys:%shuffled-quips% sys:%sm-lev-bits% sys:%sm-lev-size% sys:%test-funs%
+syn keyword tl_keyword contained sys:%test-funs-neg% sys:%test-funs-ops% sys:%test-funs-pos% sys:%test-inv%
+syn keyword tl_keyword contained sys:%test-opcode% sys:%tlo-ver% sys:%warning-syms% sys:*dedup*
+syn keyword tl_keyword contained sys:*emit* sys:*eval* sys:*ifx-env* sys:*in-compilation-unit*
syn keyword tl_keyword contained sys:*lazy-streams* sys:*load-recursive* sys:*load-time* sys:*match-form*
syn keyword tl_keyword contained sys:*op-ctx* sys:*pl-env* sys:*pl-form* sys:*struct-prelude*
syn keyword tl_keyword contained sys:*struct-prelude-alists* sys:*top-level* sys:*trace-hash* sys:*trace-level*
syn keyword tl_keyword contained sys:*unchecked-calls* sys:abscond* sys:abscond-from sys:add-neg-parens
-syn keyword tl_keyword contained sys:analyze-argtypes sys:analyze-params sys:apply sys:arith-each
-syn keyword tl_keyword contained sys:asm-error sys:assumed-fun sys:autoload-try-fun sys:awk%--rng
+syn keyword tl_keyword contained sys:analyze-argtypes sys:analyze-params sys:and-set sys:apply
+syn keyword tl_keyword contained sys:arith-each sys:ash-set sys:asm-error sys:asr
+syn keyword tl_keyword contained sys:asr-set sys:assumed-fun sys:autoload-try-fun sys:awk%--rng
syn keyword tl_keyword contained sys:awk%--rng+ sys:awk%--rng- sys:awk%-rng+ sys:awk%rng+
syn keyword tl_keyword contained sys:awk-code-move-check sys:awk-error sys:awk-expander sys:awk-field-name-code
syn keyword tl_keyword contained sys:awk-fun-let sys:awk-fun-shadowing-env sys:awk-mac-let sys:awk-mac-let-outer
@@ -630,143 +639,144 @@ syn keyword tl_keyword contained sys:dbg-enable sys:dbg-restore sys:dbg-set sys:
syn keyword tl_keyword contained sys:debugger sys:debugger-help sys:dedup sys:dedup-labels
syn keyword tl_keyword contained sys:deffi-cb-expander sys:define-method sys:defset-expander sys:defset-expander-simple
syn keyword tl_keyword contained sys:detached-run sys:detect-infix sys:dig sys:disassemble-cdf
-syn keyword tl_keyword contained sys:div sys:dlib-expr sys:do-conv sys:do-copy-obj
-syn keyword tl_keyword contained sys:do-path-test sys:do-tweak-obj sys:dump-to-tlo sys:dvbind
-syn keyword tl_keyword contained sys:dwim-del sys:dwim-set sys:dyn-size sys:each-match-expander
-syn keyword tl_keyword contained sys:each-op sys:early-peephole sys:enc-small-op sys:ensure-op-arg
-syn keyword tl_keyword contained sys:env-to-let sys:eq-comparable sys:eql-comparable sys:eval-cache-emit-warnings
-syn keyword tl_keyword contained sys:eval-err sys:expand-and sys:expand-arith-each-prod sys:expand-bind-mac-params
-syn keyword tl_keyword contained sys:expand-defmacro sys:expand-defsymacro sys:expand-defun sys:expand-defvarl
-syn keyword tl_keyword contained sys:expand-dohash sys:expand-doloop sys:expand-each sys:expand-each-prod
-syn keyword tl_keyword contained sys:expand-each-prod* sys:expand-handle sys:expand-lambda-match sys:expand-neg-parens
-syn keyword tl_keyword contained sys:expand-param-macro sys:expand-params sys:expand-pic sys:expand-pic-align
-syn keyword tl_keyword contained sys:expand-pic-num sys:expand-pic-num-commas sys:expand-quasi sys:expand-quasi-args
-syn keyword tl_keyword contained sys:expand-quasi-match sys:expand-quasi-mods sys:expand-sym-ref sys:expr
-syn keyword tl_keyword contained sys:fbind sys:find-parent sys:fixed-point sys:flatten-or
-syn keyword tl_keyword contained sys:fmt-flex sys:fmt-join sys:fmt-simple sys:for-op
-syn keyword tl_keyword contained sys:gc sys:gc-set-delta sys:get-buf-common sys:get-fun-getter-setter
-syn keyword tl_keyword contained sys:get-mb sys:get-param-info sys:get-place-macro sys:get-var-list
-syn keyword tl_keyword contained sys:get-vars sys:get-vb sys:getopts-error sys:glob-xstar
-syn keyword tl_keyword contained sys:handle-bad-syntax sys:handle-mutated-var-args sys:hlet-expand sys:if-to-cond
-syn keyword tl_keyword contained sys:ifx-ops sys:ifx-uops sys:ign-notfound sys:in6addr-condensed-text
-syn keyword tl_keyword contained sys:infix-error sys:infix-expand-hook sys:inline-chain sys:inline-chain-rec
-syn keyword tl_keyword contained sys:insert-commas sys:is-label sys:l1-setq sys:l1-val
-syn keyword tl_keyword contained sys:lambda-apply-transform sys:lambda-excess-apply-list sys:lambda-short-apply-list sys:lambda-too-few-args
-syn keyword tl_keyword contained sys:lambda-too-many-args sys:lbind sys:lisp1-setq sys:lisp1-value
-syn keyword tl_keyword contained sys:list-builder-flets sys:list-from-vm-desc sys:load-time-lit sys:loc
-syn keyword tl_keyword contained sys:loosen sys:lopip1 sys:mac-env-flatten sys:make-anon-package
-syn keyword tl_keyword contained sys:make-command-env sys:make-copy-path-opts sys:make-struct-lit sys:make-struct-type
-syn keyword tl_keyword contained sys:maproc-common sys:mark-special sys:match-case-to-casequal sys:match-pat-error
-syn keyword tl_keyword contained sys:maybe-mov sys:meth-lambda sys:misleading-ref-check sys:mul
-syn keyword tl_keyword contained sys:name-str sys:new-expander sys:new-type sys:no-dvbind-eval
-syn keyword tl_keyword contained sys:non-triv-pat-p sys:normalize-enum-pairs sys:null-reg sys:obtain-impl
-syn keyword tl_keyword contained sys:op-alpha-rename sys:op-ensure-rec sys:op-expand sys:op-meta-p
-syn keyword tl_keyword contained sys:op-rec-p sys:open-compile-streams sys:open-url sys:operand-to-exp
-syn keyword tl_keyword contained sys:operand-to-sym sys:opip-expand sys:opip-let-p sys:opip-single-let-p
-syn keyword tl_keyword contained sys:opt-controlled-diag sys:opt-dash sys:opt-err sys:orig-form
-syn keyword tl_keyword contained sys:os-symbol sys:param-check sys:parse-compound-operand sys:parse-lambda-match-clause
-syn keyword tl_keyword contained sys:parse-operand sys:pat-len sys:path-access sys:path-examine
-syn keyword tl_keyword contained sys:path-simplify sys:path-split sys:path-test-mode sys:path-test-type
-syn keyword tl_keyword contained sys:path-volume sys:pic-join-opt sys:placelet-1 sys:print-backtrace
-syn keyword tl_keyword contained sys:propagate-ancestor sys:propagate-perms sys:prune-missing-inits sys:put-objects
-syn keyword tl_keyword contained sys:qquote sys:quasi sys:quasilist sys:r-s-let-expander
-syn keyword tl_keyword contained sys:reduce-constant sys:reduce-lisp sys:reduce-or sys:reg-expand-nongreedy
-syn keyword tl_keyword contained sys:register-opcode sys:register-simple-accessor sys:repl sys:rewrite
-syn keyword tl_keyword contained sys:rewrite-case sys:rplaca sys:rplacd sys:rslotset
-syn keyword tl_keyword contained sys:rt-assert-fail sys:rt-defmacro sys:rt-defsymacro sys:rt-defun
-syn keyword tl_keyword contained sys:rt-defv sys:rt-defvarl sys:rt-load-for sys:rt-pprof
-syn keyword tl_keyword contained sys:rt-progv sys:rt-setjmp sys:safe-abs-path sys:safe-const-eval
-syn keyword tl_keyword contained sys:safe-const-reduce sys:safe-constantp sys:set-hash-traversal-limit sys:set-macro-ancestor
-syn keyword tl_keyword contained sys:set-symbol-value sys:setq sys:setqf sys:simplify-or
-syn keyword tl_keyword contained sys:simplify-variadic-lambda sys:slot-types sys:small-op-p sys:small-op-to-sym
-syn keyword tl_keyword contained sys:splice sys:static-slot-types sys:str-inaddr-net-impl sys:struct-lit
-syn keyword tl_keyword contained sys:subst-preserve sys:switch sys:sym-clobber-expander sys:sym-delete-expander
-syn keyword tl_keyword contained sys:sym-update-expander sys:system-symbol-p sys:top-fb sys:top-mb
-syn keyword tl_keyword contained sys:top-vb sys:tr* sys:trace sys:trace-canonicalize-name
-syn keyword tl_keyword contained sys:trace-enter sys:trace-leave sys:trace-redefine-check sys:transform-qquote
-syn keyword tl_keyword contained sys:translate-hash-bang sys:tree-construct sys:trfm sys:true-const-p
-syn keyword tl_keyword contained sys:txr-case-impl sys:typecase-expander sys:unquote sys:untrace
+syn keyword tl_keyword contained sys:dlib-expr sys:do-conv sys:do-copy-obj sys:do-path-test
+syn keyword tl_keyword contained sys:do-tweak-obj sys:dump-to-tlo sys:dvbind sys:dwim-del
+syn keyword tl_keyword contained sys:dwim-set sys:dyn-size sys:each-match-expander sys:each-op
+syn keyword tl_keyword contained sys:early-peephole sys:enc-small-op sys:ensure-op-arg sys:env-to-let
+syn keyword tl_keyword contained sys:eq-comparable sys:eql-comparable sys:eval-cache-emit-warnings sys:eval-err
+syn keyword tl_keyword contained sys:expand-and sys:expand-arith-each-prod sys:expand-bind-mac-params sys:expand-defmacro
+syn keyword tl_keyword contained sys:expand-defsymacro sys:expand-defun sys:expand-defvarl sys:expand-dohash
+syn keyword tl_keyword contained sys:expand-doloop sys:expand-each sys:expand-each-prod sys:expand-each-prod*
+syn keyword tl_keyword contained sys:expand-handle sys:expand-lambda-match sys:expand-neg-parens sys:expand-param-macro
+syn keyword tl_keyword contained sys:expand-params sys:expand-pic sys:expand-pic-align sys:expand-pic-num
+syn keyword tl_keyword contained sys:expand-pic-num-commas sys:expand-quasi sys:expand-quasi-args sys:expand-quasi-match
+syn keyword tl_keyword contained sys:expand-quasi-mods sys:expand-sym-ref sys:fbind sys:find-parent
+syn keyword tl_keyword contained sys:fixed-point sys:flatten-or sys:fmt-flex sys:fmt-flex-fmstr
+syn keyword tl_keyword contained sys:fmt-join sys:fmt-simple sys:fmt-simple-fmstr sys:for-op
+syn keyword tl_keyword contained sys:funp sys:gc sys:gc-set-delta sys:get-buf-common
+syn keyword tl_keyword contained sys:get-fun-getter-setter sys:get-mb sys:get-param-info sys:get-place-macro
+syn keyword tl_keyword contained sys:get-var-list sys:get-vars sys:get-vb sys:getopts-error
+syn keyword tl_keyword contained sys:glob-xstar sys:handle-bad-syntax sys:handle-mutated-var-args sys:hlet-expand
+syn keyword tl_keyword contained sys:hmac-impl sys:if-to-cond sys:ifx-ops sys:ifx-uops
+syn keyword tl_keyword contained sys:ign-notfound sys:in6addr-condensed-text sys:infix-error sys:infix-expand-hook
+syn keyword tl_keyword contained sys:inline-chain sys:inline-chain-rec sys:insert-commas sys:is-label
+syn keyword tl_keyword contained sys:l1-setq sys:l1-val sys:lambda-apply-transform sys:lambda-excess-apply-list
+syn keyword tl_keyword contained sys:lambda-short-apply-list sys:lambda-too-few-args sys:lambda-too-many-args sys:lbind
+syn keyword tl_keyword contained sys:lisp1-setq sys:lisp1-value sys:list-builder-flets sys:list-from-vm-desc
+syn keyword tl_keyword contained sys:load-time-lit sys:loc sys:logand-set sys:logior-set
+syn keyword tl_keyword contained sys:logxor-set sys:loosen sys:lopip1 sys:mac-env-flatten
+syn keyword tl_keyword contained sys:make-anon-package sys:make-command-env sys:make-copy-path-opts sys:make-struct-lit
+syn keyword tl_keyword contained sys:make-struct-type sys:maproc-common sys:mark-special sys:match-case-to-casequal
+syn keyword tl_keyword contained sys:match-pat-error sys:maybe-mov sys:meth-lambda sys:misleading-ref-check
+syn keyword tl_keyword contained sys:mod-set sys:name-str sys:new-expander sys:new-type
+syn keyword tl_keyword contained sys:no-dvbind-eval sys:non-triv-pat-p sys:normalize-enum-pairs sys:null-reg
+syn keyword tl_keyword contained sys:obtain-impl sys:op-alpha-rename sys:op-ensure-rec sys:op-expand
+syn keyword tl_keyword contained sys:op-meta-p sys:op-rec-p sys:open-compile-streams sys:open-url
+syn keyword tl_keyword contained sys:operand-to-exp sys:operand-to-sym sys:opip-expand sys:opip-let-p
+syn keyword tl_keyword contained sys:opip-single-let-p sys:opt-controlled-diag sys:opt-dash sys:opt-err
+syn keyword tl_keyword contained sys:or-set sys:orig-form sys:os-symbol sys:param-check
+syn keyword tl_keyword contained sys:parse-compound-operand sys:parse-lambda-match-clause sys:parse-operand sys:pat-len
+syn keyword tl_keyword contained sys:path-access sys:path-examine sys:path-simplify sys:path-split
+syn keyword tl_keyword contained sys:path-test-mode sys:path-test-type sys:path-volume sys:pic-join-opt
+syn keyword tl_keyword contained sys:placelet-1 sys:print-backtrace sys:propagate-ancestor sys:propagate-perms
+syn keyword tl_keyword contained sys:prune-missing-inits sys:put-objects sys:qquote sys:quasi
+syn keyword tl_keyword contained sys:quasilist sys:r-s-let-expander sys:reduce-constant sys:reduce-lisp
+syn keyword tl_keyword contained sys:reduce-or sys:reg-expand-nongreedy sys:register-opcode sys:register-simple-accessor
+syn keyword tl_keyword contained sys:repl sys:rewrite sys:rewrite-case sys:rplaca
+syn keyword tl_keyword contained sys:rplacd sys:rslotset sys:rt-assert-fail sys:rt-defmacro
+syn keyword tl_keyword contained sys:rt-defsymacro sys:rt-defun sys:rt-defv sys:rt-defvarl
+syn keyword tl_keyword contained sys:rt-load-for sys:rt-pprof sys:rt-progv sys:rt-setjmp
+syn keyword tl_keyword contained sys:safe-abs-path sys:safe-const-eval sys:safe-const-reduce sys:safe-constantp
+syn keyword tl_keyword contained sys:set-hash-traversal-limit sys:set-macro-ancestor sys:set-symbol-value sys:setq
+syn keyword tl_keyword contained sys:setqf sys:simplify-or sys:simplify-variadic-lambda sys:slot-types
+syn keyword tl_keyword contained sys:small-op-p sys:small-op-to-sym sys:static-slot-types sys:str-inaddr-net-impl
+syn keyword tl_keyword contained sys:struct-lit sys:subst-preserve sys:switch sys:sym-clobber-expander
+syn keyword tl_keyword contained sys:sym-delete-expander sys:sym-update-expander sys:system-symbol-p sys:top-fb
+syn keyword tl_keyword contained sys:top-mb sys:top-vb sys:tr* sys:trace
+syn keyword tl_keyword contained sys:trace-canonicalize-name sys:trace-enter sys:trace-leave sys:trace-redefine-check
+syn keyword tl_keyword contained sys:transform-qquote sys:translate-hash-bang sys:tree-construct sys:trfm
+syn keyword tl_keyword contained sys:true-const-p sys:txr-case-impl sys:typecase-expander sys:untrace
syn keyword tl_keyword contained sys:upenv sys:uw-block sys:uw-captured-block sys:uw-catch
syn keyword tl_keyword contained sys:uw-cont-copy sys:uw-eval sys:uw-expand sys:uw-fcall
-syn keyword tl_keyword contained sys:uw-guard sys:uw-handle sys:uw-menv sys:var
-syn keyword tl_keyword contained sys:var-pat-p sys:vars-check sys:vm-closure-desc sys:vm-closure-entry
-syn keyword tl_keyword contained sys:vm-desc-bytecode sys:vm-desc-datavec sys:vm-desc-nlevels sys:vm-desc-nregs
-syn keyword tl_keyword contained sys:vm-desc-symvec sys:vm-execute-toplevel sys:vm-make-desc sys:wdwrap
-syn keyword tl_keyword contained sys:when-exprs-match sys:when-opt sys:with-disabled-debugging sys:with-dyn-lib-check
-syn keyword tl_keyword contained syslog system-package t tab0
-syn keyword tl_keyword contained tab1 tab2 tab3 tabdly
-syn keyword tl_keyword contained tagbody tailp take take-until
-syn keyword tl_keyword contained take-while tan tanh tap
-syn keyword tl_keyword contained tb tc tcdrain tcflow
-syn keyword tl_keyword contained tcflush tcgetattr tciflush tcioff
-syn keyword tl_keyword contained tcioflush tcion tcoflush tcooff
-syn keyword tl_keyword contained tcoon tcp-nodelay tcsadrain tcsaflush
-syn keyword tl_keyword contained tcsanow tcsendbreak tcsetattr tentative-def-exists
-syn keyword tl_keyword contained tenth test-clear test-clear-dirty test-dec
-syn keyword tl_keyword contained test-dirty test-inc test-neq-set-indent-mode test-set
-syn keyword tl_keyword contained test-set-indent-mode tf tgamma third
-syn keyword tl_keyword contained throw throwf time time-fields-local
-syn keyword tl_keyword contained time-fields-utc time-nsec time-parse time-parse-local
-syn keyword tl_keyword contained time-parse-utc time-str-local time-str-utc time-string-local
-syn keyword tl_keyword contained time-string-utc time-struct-local time-struct-utc time-t
-syn keyword tl_keyword contained time-usec tmpfile tnode tnodep
-syn keyword tl_keyword contained to tocsv tofloat tofloatz
-syn keyword tl_keyword contained toint tointz tojson tok
-syn keyword tl_keyword contained tok-str tok-where tokn tostop
-syn keyword tl_keyword contained tostring tostringp touch tprint
-syn keyword tl_keyword contained trace transpose tree tree-begin
-syn keyword tl_keyword contained tree-bind tree-case tree-clear tree-count
-syn keyword tl_keyword contained tree-del-min tree-del-min-node tree-delete tree-delete-node
-syn keyword tl_keyword contained tree-delete-specific-node tree-find tree-insert tree-insert-node
-syn keyword tl_keyword contained tree-lookup tree-lookup-node tree-min tree-min-node
-syn keyword tl_keyword contained tree-next tree-peek tree-reset tree-root
-syn keyword tl_keyword contained treep trie-add trie-compress trie-lookup-begin
-syn keyword tl_keyword contained trie-lookup-feed-char trie-value-at trim-left trim-long-suffix
-syn keyword tl_keyword contained trim-path-seps trim-right trim-short-suffix trim-str
-syn keyword tl_keyword contained true trunc trunc-rem truncate-stream
-syn keyword tl_keyword contained tuples tuples* txr-case txr-exe-path
-syn keyword tl_keyword contained txr-if txr-parse txr-path txr-version
-syn keyword tl_keyword contained txr-when typecase typedef typeof
-syn keyword tl_keyword contained typep ubit uchar uid-t
-syn keyword tl_keyword contained uint uint-buf uint-carray uint-ptr-t
-syn keyword tl_keyword contained uint16 uint32 uint64 uint8
-syn keyword tl_keyword contained uintmax-t ulong ulonglong umask
-syn keyword tl_keyword contained umeth umethod uname unget-byte
-syn keyword tl_keyword contained unget-char uni unintern union
-syn keyword tl_keyword contained union-get union-in union-members union-out
-syn keyword tl_keyword contained union-put uniq unique unless
-syn keyword tl_keyword contained unquote unsetenv until until*
-syn keyword tl_keyword contained untrace unuse-package unuse-sym unwind-protect
-syn keyword tl_keyword contained upcase-str upd update uref
-syn keyword tl_keyword contained url-decode url-encode use use-package
-syn keyword tl_keyword contained use-sym use-sym-as user-package ushort
-syn keyword tl_keyword contained usl usleep uslot utimes
-syn keyword tl_keyword contained val vdiscard vec vec-carray
-syn keyword tl_keyword contained vec-list vec-push vec-seq vec-set-length
-syn keyword tl_keyword contained vecref vector vector-list vectorp
-syn keyword tl_keyword contained veof veol veol2 verase
-syn keyword tl_keyword contained vintr vkill vlnext vm-fun-p
-syn keyword tl_keyword contained vmin void vquit vreprint
-syn keyword tl_keyword contained vstart vstop vsusp vswtc
-syn keyword tl_keyword contained vt0 vt1 vtdly vtime
-syn keyword tl_keyword contained vwerase w-continued w-coredump w-exitstatus
-syn keyword tl_keyword contained w-ifcontinued w-ifexited w-ifsignaled w-ifstopped
-syn keyword tl_keyword contained w-nohang w-stopsig w-termsig w-untraced
-syn keyword tl_keyword contained wait wchar weave when
-syn keyword tl_keyword contained when-match whena whenlet where
-syn keyword tl_keyword contained wheref whereq whereql wherequal
-syn keyword tl_keyword contained while while* while-match while-match-case
-syn keyword tl_keyword contained while-true-match-case whilet width width-check
-syn keyword tl_keyword contained window-map window-mapdo window-mappend wint-t
-syn keyword tl_keyword contained with-clobber-expander with-compilation-unit with-compile-opts with-delete-expander
-syn keyword tl_keyword contained with-dyn-lib with-gensyms with-hash-iter with-in-buf-stream
-syn keyword tl_keyword contained with-in-string-byte-stream with-in-string-stream with-objects with-out-buf-stream
-syn keyword tl_keyword contained with-out-string-stream with-out-strlist-stream with-resources with-slots
-syn keyword tl_keyword contained with-stream with-update-expander wrap wrap*
-syn keyword tl_keyword contained wstr wstr-d wstr-s xcase
-syn keyword tl_keyword contained y0 y1 yield yield-from
-syn keyword tl_keyword contained yn zap zarray zchar
-syn keyword tl_keyword contained zero-fill zerop zip znew
+syn keyword tl_keyword contained sys:uw-guard sys:uw-handle sys:uw-menv sys:var-pat-p
+syn keyword tl_keyword contained sys:vars-check sys:vm-closure-desc sys:vm-closure-entry sys:vm-desc-bytecode
+syn keyword tl_keyword contained sys:vm-desc-datavec sys:vm-desc-nlevels sys:vm-desc-nregs sys:vm-desc-symvec
+syn keyword tl_keyword contained sys:vm-execute-toplevel sys:vm-make-desc sys:wdwrap sys:when-opt
+syn keyword tl_keyword contained sys:with-disabled-debugging sys:with-dyn-lib-check syslog system-package
+syn keyword tl_keyword contained t tab0 tab1 tab2
+syn keyword tl_keyword contained tab3 tabdly tagbody tailp
+syn keyword tl_keyword contained take take-until take-while tan
+syn keyword tl_keyword contained tanh tap tb tc
+syn keyword tl_keyword contained tcdrain tcflow tcflush tcgetattr
+syn keyword tl_keyword contained tciflush tcioff tcioflush tcion
+syn keyword tl_keyword contained tcoflush tcooff tcoon tcp-nodelay
+syn keyword tl_keyword contained tcsadrain tcsaflush tcsanow tcsendbreak
+syn keyword tl_keyword contained tcsetattr tentative-def-exists tenth test-clear
+syn keyword tl_keyword contained test-clear-dirty test-dec test-dirty test-inc
+syn keyword tl_keyword contained test-neq-set-indent-mode test-set test-set-indent-mode tf
+syn keyword tl_keyword contained tgamma third throw throwf
+syn keyword tl_keyword contained time time-fields-local time-fields-utc time-nsec
+syn keyword tl_keyword contained time-parse time-parse-local time-parse-utc time-str-local
+syn keyword tl_keyword contained time-str-utc time-string-local time-string-utc time-struct-local
+syn keyword tl_keyword contained time-struct-utc time-t time-usec tmpfile
+syn keyword tl_keyword contained tnode tnodep to tocsv
+syn keyword tl_keyword contained tofloat tofloatz toint tointz
+syn keyword tl_keyword contained tojson tok tok-str tok-where
+syn keyword tl_keyword contained tokn tostop tostring tostringp
+syn keyword tl_keyword contained touch tprint trace transpose
+syn keyword tl_keyword contained tree tree-begin tree-bind tree-case
+syn keyword tl_keyword contained tree-clear tree-count tree-del-min tree-del-min-node
+syn keyword tl_keyword contained tree-delete tree-delete-node tree-delete-specific-node tree-find
+syn keyword tl_keyword contained tree-insert tree-insert-node tree-lookup tree-lookup-node
+syn keyword tl_keyword contained tree-min tree-min-node tree-next tree-peek
+syn keyword tl_keyword contained tree-reset tree-root treep trie-add
+syn keyword tl_keyword contained trie-compress trie-lookup-begin trie-lookup-feed-char trie-value-at
+syn keyword tl_keyword contained trim-left trim-long-suffix trim-path-seps trim-right
+syn keyword tl_keyword contained trim-short-suffix trim-str true trunc
+syn keyword tl_keyword contained trunc-rem truncate-stream tuples tuples*
+syn keyword tl_keyword contained txr-case txr-exe-path txr-if txr-parse
+syn keyword tl_keyword contained txr-path txr-version txr-when typecase
+syn keyword tl_keyword contained typedef typeof typep ubit
+syn keyword tl_keyword contained uchar uid-t uint uint-buf
+syn keyword tl_keyword contained uint-carray uint-ptr-t uint16 uint32
+syn keyword tl_keyword contained uint64 uint8 uintmax-t ulong
+syn keyword tl_keyword contained ulonglong umask umeth umethod
+syn keyword tl_keyword contained uname unget-byte unget-char uni
+syn keyword tl_keyword contained unintern union union-get union-in
+syn keyword tl_keyword contained union-members union-out union-put uniq
+syn keyword tl_keyword contained unique unless unsetenv until
+syn keyword tl_keyword contained until* untrace unuse-package unuse-sym
+syn keyword tl_keyword contained unwind-protect upcase-str upd update
+syn keyword tl_keyword contained uref url-decode url-encode use
+syn keyword tl_keyword contained use-package use-sym use-sym-as user-package
+syn keyword tl_keyword contained ushort usl usleep uslot
+syn keyword tl_keyword contained utimes val vdiscard vec
+syn keyword tl_keyword contained vec-carray vec-list vec-push vec-seq
+syn keyword tl_keyword contained vec-set-length vecref vector vector-list
+syn keyword tl_keyword contained vectorp veof veol veol2
+syn keyword tl_keyword contained verase vintr vkill vlnext
+syn keyword tl_keyword contained vm-fun-p vmin void vquit
+syn keyword tl_keyword contained vreprint vstart vstop vsusp
+syn keyword tl_keyword contained vswtc vt0 vt1 vtdly
+syn keyword tl_keyword contained vtime vwerase w-continued w-coredump
+syn keyword tl_keyword contained w-exitstatus w-ifcontinued w-ifexited w-ifsignaled
+syn keyword tl_keyword contained w-ifstopped w-nohang w-stopsig w-termsig
+syn keyword tl_keyword contained w-untraced wait wchar weave
+syn keyword tl_keyword contained when when-match whena whenlet
+syn keyword tl_keyword contained where wheref whereq whereql
+syn keyword tl_keyword contained wherequal while while* while-match
+syn keyword tl_keyword contained while-match-case while-true-match-case whilet width
+syn keyword tl_keyword contained width-check window-map window-mapdo window-mappend
+syn keyword tl_keyword contained wint-t with-clobber-expander with-compilation-unit with-compile-opts
+syn keyword tl_keyword contained with-delete-expander with-dyn-lib with-gensyms with-hash-iter
+syn keyword tl_keyword contained with-in-buf-stream with-in-string-byte-stream with-in-string-stream with-objects
+syn keyword tl_keyword contained with-out-buf-stream with-out-string-stream with-out-strlist-stream with-resources
+syn keyword tl_keyword contained with-slots with-stream with-update-expander wrap
+syn keyword tl_keyword contained wrap* wstr wstr-d wstr-s
+syn keyword tl_keyword contained xcase y0 y1 yield
+syn keyword tl_keyword contained yield-from yn zap zarray
+syn keyword tl_keyword contained zchar zero-fill zerop zip
+syn keyword tl_keyword contained znew
syn keyword txr_keyword contained accept all and assert
syn keyword txr_keyword contained bind block call cases
@@ -816,7 +826,7 @@ syn match txr_ncomment ";.*" contained
syn match txr_hashbang "\%^#!.*"
-syn match txr_qat "\(@[ \t]*\)" nextgroup=txr_splicevar,txr_metanum,txr_qbracevar,txr_list,txr_bracket,txr_escat,txr_stresc,txr_numesc,txr_badesc contained
+syn match txr_qat "\(@[ \t]*\)\(\~\([\^<>]\?[0-9]*\(,[+\-0 ]*[0-9]*\)\?\)\?[asdxXobfepi]:\)\?" nextgroup=txr_splicevar,txr_metanum,txr_qbracevar,txr_list,txr_bracket,txr_escat,txr_stresc,txr_numesc,txr_badesc contained
syn match txr_dot "\." contained
syn match txr_ident "[A-Za-z_0-9!$%&*+\-<=>?\\_|~]*[A-Za-z_!$%&*+\-<=>?\\_|~^][A-Za-z_0-9!$%&*+\-<=>?\\_|~^]*" contained
syn match txr_braced_ident "\(#\?:\)\?[[A-Za-z_0-9!$%&*+\-<=>?\\_|~^/]\+" contained
@@ -944,5 +954,5 @@ hi def link txr_jerr Error
let b:current_syntax = "lisp"
-set lispwords=ado,alet,align,alignof,ap,append-each,append-each*,append-each-prod,append-each-prod*,append-match-products,append-matches,aret,array,arraysize,assert,awk,bit,block,block*,bool,buf,buf-d,build,buildn,carray,case,case*,caseq,caseq*,caseql,caseql*,casequal,casequal*,catch,catch*,catch**,clear-mask,close-lazy-streams,collect-each,collect-each*,collect-each-prod,collect-each-prod*,compare-swap,compile-only,compiler-let,cond,conda,condlet,cptr,dec,defenum,defex,deffi,deffi-cb,deffi-cb-unsafe,deffi-struct,deffi-sym,deffi-type,deffi-union,deffi-var,define-accessor,define-modify-macro,define-option-struct,define-param-expander,define-place-macro,define-struct-clause,define-struct-prelude,defmacro,defmatch,defmeth,defpackage,defparm,defparml,defplace,defset,defstruct,defsymacro,defun,defun-match,defvar,defvarl,del,delay,do,dohash,doloop,doloop*,dotimes,each,each*,each-false,each-match,each-match-product,each-prod,each-prod*,each-true,ecase,ecase*,ecaseq,ecaseq*,ecaseql,ecaseql*,ecasequal,ecasequal*,elemsize,elemtype,ensure,enum,enumed,enumlet,equot,etypecase,eval-only,expander-let,ffi,flet,flip,flow,for,for*,fun,gen,go,gun,handle,handle*,handler-bind,hlet,hlet*,ido,if,if-match,ifa,iflet,ifx,ignerr,ignwarn,in-package,ip,json,keep-match-products,keep-matches,labels,lambda,lambda-match,lcons,ldo,let,let*,letrec,lflow,lnew*,load-for,load-time,loand,lop,lop1,lopf,lopip,lset,mac-env-param-bind,mac-param-bind,macro-time,macrolet,match,match-case,match-cond,match-ecase,match-tuple-case,mlet,mul-each,mul-each*,mul-each-prod,mul-each-prod*,nand,new*,nor,obtain,obtain*,obtain*-block,obtain-block,offsetof,op,opf,pack,pdec,pic,pinc,placelet,placelet*,pop,pop-after-load,pprof,prof,prog,prog*,prog1,prog2,progn,progv,ptr,ptr-in,ptr-in-d,ptr-out,ptr-out-d,ptr-out-s,push,push-after-load,pushnew,ret,return,return-from,rlet,rslot,sbit,set-mask,setjmp,sizeof,slet,some-false,some-true,splice,struct,sum-each,sum-each*,sum-each-prod,sum-each-prod*,suspend,symacrolet,sys:abscond-from,sys:arith-each,sys:awk-fun-let,sys:awk-mac-let,sys:awk-mac-let-outer,sys:awk-redir,sys:awk-symac-let,sys:blk,sys:cached-sort-body,sys:catch,sys:conv,sys:conv-expand-sym,sys:div,sys:dlib-expr,sys:dvbind,sys:each-op,sys:expr,sys:fbind,sys:fixed-point,sys:for-op,sys:ign-notfound,sys:l1-val,sys:lbind,sys:lisp1-value,sys:load-time-lit,sys:lopip1,sys:meth-lambda,sys:mul,sys:path-examine,sys:placelet-1,sys:rewrite-case,sys:splice,sys:struct-lit,sys:switch,sys:txr-case-impl,sys:unquote,sys:upenv,sys:var,sys:when-exprs-match,sys:when-opt,sys:with-disabled-debugging,tagbody,tap,tb,tc,test-clear,test-dec,test-inc,test-set,trace,tree-bind,tree-case,txr-case,txr-if,txr-when,typecase,typedef,ubit,union,unless,unquote,until,until*,untrace,unwind-protect,upd,uref,when,when-match,whena,whenlet,while,while*,while-match,while-match-case,while-true-match-case,whilet,with-clobber-expander,with-compilation-unit,with-compile-opts,with-delete-expander,with-dyn-lib,with-gensyms,with-hash-iter,with-in-buf-stream,with-in-string-byte-stream,with-in-string-stream,with-objects,with-out-buf-stream,with-out-string-stream,with-out-strlist-stream,with-resources,with-slots,with-stream,with-update-expander,yield,yield-from,zap,zarray,znew,:method,:function,:init,:postinit,:fini
+set lispwords=ado,alet,align,alignof,ap,append-each,append-each*,append-each-prod,append-each-prod*,append-match-case-products,append-match-cases,append-match-products,append-matches,aret,array,arraysize,assert,awk,bit,block,block*,bool,buf,buf-d,build,buildn,carray,case,case*,caseq,caseq*,caseql,caseql*,casequal,casequal*,catch,catch*,catch**,clear-mask,close-lazy-streams,collect-each,collect-each*,collect-each-prod,collect-each-prod*,collect-match-case-products,collect-match-cases,compare-swap,compile-only,compiler-let,cond,conda,condlet,cptr,dec,defenum,defex,deffi,deffi-cb,deffi-cb-unsafe,deffi-struct,deffi-sym,deffi-type,deffi-union,deffi-var,define-accessor,define-modify-macro,define-option-struct,define-param-expander,define-place-macro,define-struct-clause,define-struct-prelude,defmacro,defmatch,defmeth,defpackage,defparm,defparml,defplace,defset,defstruct,defsymacro,defun,defun-match,defvar,defvarl,del,delay,div,do,dohash,doloop,doloop*,dotimes,each,each*,each-false,each-match,each-match-case,each-match-case-product,each-match-product,each-prod,each-prod*,each-true,ecase,ecase*,ecaseq,ecaseq*,ecaseql,ecaseql*,ecasequal,ecasequal*,elemsize,elemtype,ensure,enum,enumed,enumlet,equot,etypecase,eval-only,ffi,flet,flip,flow,for,for*,fun,gen,go,gun,handle,handle*,handler-bind,hlet,hlet*,ido,if,if-match,ifa,iflet,ifx,ignerr,ignwarn,in-package,ip,json,keep-match-case-products,keep-match-cases,keep-match-products,keep-matches,labels,lambda,lambda-match,lcons,ldo,let,let*,letrec,lflow,lnew*,load-for,load-time,loand,lop,lop1,lopf,lopip,lset,mac-env-param-bind,mac-param-bind,macro-time,match,match-case,match-cond,match-ecase,match-tuple-case,mlet,mul,mul-each,mul-each*,mul-each-prod,mul-each-prod*,nand,new*,nor,obtain,obtain*,obtain*-block,obtain-block,offsetof,op,opf,pack,pdec,pic,pinc,placelet,placelet*,pop,pop-after-load,pprof,prof,prog,prog*,prog1,prog2,progn,progv,ptr,ptr-in,ptr-in-d,ptr-out,ptr-out-d,ptr-out-s,push,push-after-load,pushnew,ret,return,return-from,rlet,rslot,sbit,set-mask,setjmp,sizeof,slet,some-false,some-true,struct,sum-each,sum-each*,sum-each-prod,sum-each-prod*,suspend,sys:abscond-from,sys:and-set,sys:arith-each,sys:ash-set,sys:asr,sys:asr-set,sys:awk-fun-let,sys:awk-mac-let,sys:awk-mac-let-outer,sys:awk-redir,sys:awk-symac-let,sys:blk,sys:cached-sort-body,sys:catch,sys:conv,sys:conv-expand-sym,sys:dlib-expr,sys:dvbind,sys:each-op,sys:fbind,sys:fixed-point,sys:for-op,sys:funp,sys:ign-notfound,sys:l1-val,sys:lbind,sys:lisp1-value,sys:load-time-lit,sys:logand-set,sys:logior-set,sys:logxor-set,sys:lopip1,sys:meth-lambda,sys:mod-set,sys:or-set,sys:path-examine,sys:placelet-1,sys:rewrite-case,sys:struct-lit,sys:switch,sys:txr-case-impl,sys:upenv,sys:when-opt,sys:with-disabled-debugging,tagbody,tap,tb,tc,test-clear,test-dec,test-inc,test-set,trace,tree-bind,tree-case,txr-case,txr-if,txr-when,typecase,typedef,ubit,union,unless,until,until*,untrace,unwind-protect,upd,uref,when,when-match,whena,whenlet,while,while*,while-match,while-match-case,while-true-match-case,whilet,with-clobber-expander,with-compilation-unit,with-compile-opts,with-delete-expander,with-dyn-lib,with-gensyms,with-hash-iter,with-in-buf-stream,with-in-string-byte-stream,with-in-string-stream,with-objects,with-out-buf-stream,with-out-string-stream,with-out-strlist-stream,with-resources,with-slots,with-stream,with-update-expander,yield,yield-from,zap,zarray,znew,:method,:function,:init,:postinit,:fini
set comments=:@\;\;\;,:@\;\;,:@\;