diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-02-10 06:50:26 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-02-10 06:50:26 -0800 |
commit | bdefeae949effdbf45dfbf14475b2b795ef50cb2 (patch) | |
tree | 22c87c6176f56be42a6acdce3ab644e1d7b3126f /match.h | |
parent | 8da2bf1c19a197df13928c18cd8e4317b9934c66 (diff) | |
download | txr-bdefeae949effdbf45dfbf14475b2b795ef50cb2.tar.gz txr-bdefeae949effdbf45dfbf14475b2b795ef50cb2.tar.bz2 txr-bdefeae949effdbf45dfbf14475b2b795ef50cb2.zip |
* eval.c (symacro_k, fun_k): New keyword variables.
(lexical_lisp1_binding): New static function.
(eval_init): Initialize symacro_k and fun_k; register
new intrinsic function lexical-lisp1-binding.
* match.h (var_k): Existing external name declared.
* txr.1: Documented lexical-lisp1-binding.
Diffstat (limited to 'match.h')
-rw-r--r-- | match.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ extern val text_s, choose_s, gather_s, do_s, require_s; extern val close_s, load_s, include_s, mod_s, modlast_s, line_s; -extern val counter_k, env_k; +extern val counter_k, env_k, var_k; val format_field(val string_or_list, val modifier, val filter, val eval_fun); val match_filter(val name, val arg, val other_args); val match_fun(val name, val args, val input, val files); |