diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-24 21:10:35 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-24 21:10:35 -0700 |
commit | 97f8a48e8aca3ab9837051d0d07e129fa41d7f17 (patch) | |
tree | bedc83b03835cea4ee98f4a754737272a42972e9 /lib.h | |
parent | 108a4fd92f79a47261e1ad5e06f6333ac03b91d5 (diff) | |
download | txr-97f8a48e8aca3ab9837051d0d07e129fa41d7f17.tar.gz txr-97f8a48e8aca3ab9837051d0d07e129fa41d7f17.tar.bz2 txr-97f8a48e8aca3ab9837051d0d07e129fa41d7f17.zip |
* lib.c (rebind_s): New symbol variable.
* lib.h (rebind_s): Declared.
* match.c (v_rebind): New static function.
(dir_tables_init): Registered rebind_s to v_rebind,
and also to hv_trampoline in the horizontal directive table.
* txr.1: Documented it.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -298,7 +298,7 @@ extern val skip_s, trailer_s, block_s, next_s, freeform_s, fail_s, accept_s; extern val all_s, some_s, none_s, maybe_s, cases_s, collect_s, until_s, coll_s; extern val define_s, output_s, single_s, first_s, last_s, empty_s; extern val repeat_s, rep_s, flatten_s, forget_s; -extern val local_s, merge_s, bind_s, cat_s; +extern val local_s, merge_s, bind_s, rebind_s, cat_s; extern val try_s, catch_s, finally_s, throw_s, defex_s, deffilter_s; extern val eof_s, eol_s; extern val error_s, type_error_s, internal_error_s; |