summaryrefslogtreecommitdiffstats
path: root/eval.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-27 22:04:05 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-27 22:04:05 -0700
commit10fc6e23661ad004591936b5c28b9cb17e596b8f (patch)
tree9e20e5828dc54d20d4e9f5f2372bfa348fbae381 /eval.h
parent7afbcc19bef877560f096c02e63b22f9f650b74e (diff)
downloadtxr-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.h b/eval.h
index ae5008f1..c0cce698 100644
--- a/eval.h
+++ b/eval.h
@@ -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;