diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-27 22:04:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-27 22:04:05 -0700 |
commit | 10fc6e23661ad004591936b5c28b9cb17e596b8f (patch) | |
tree | 9e20e5828dc54d20d4e9f5f2372bfa348fbae381 /eval.h | |
parent | 7afbcc19bef877560f096c02e63b22f9f650b74e (diff) | |
download | txr-10fc6e23661ad004591936b5c28b9cb17e596b8f.tar.gz txr-10fc6e23661ad004591936b5c28b9cb17e596b8f.tar.bz2 txr-10fc6e23661ad004591936b5c28b9cb17e596b8f.zip |
Simple indirection on pattern functions: @(call).
* eval.h (call_s): Declared.
* match.c (h_call, v_call): New static function.
(dir_tables_init): Register v_call in v_directive_table
under call symbol. Likewise h_call in h_directive_table.
* txr.1: Documented.
Diffstat (limited to 'eval.h')
-rw-r--r-- | eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ extern val dwim_s, lambda_s, vector_lit_s, vec_list_s, list_s; extern val hash_lit_s, hash_construct_s, struct_lit_s, qref_s; -extern val eval_error_s, if_s; +extern val eval_error_s, if_s, call_s; extern val eq_s, eql_s, equal_s; extern val last_form_evaled, last_form_expanded; |