diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-12-22 06:54:15 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-12-22 06:54:15 -0800 |
commit | d52980a49d0ddaa9c5b6d1344c6a652a82afce43 (patch) | |
tree | a43366bf2c172a6da6a5af11f4c5922c6f10c0be /match.c | |
parent | 33b7f09a959a6470a57631c3848554add4f24a62 (diff) | |
download | txr-d52980a49d0ddaa9c5b6d1344c6a652a82afce43.tar.gz txr-d52980a49d0ddaa9c5b6d1344c6a652a82afce43.tar.bz2 txr-d52980a49d0ddaa9c5b6d1344c6a652a82afce43.zip |
Allow @(line) in horizontal context.
* match.c (dir_tables_init): Register hv_trampoline handler
for line_s.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4237,6 +4237,7 @@ static void dir_tables_init(void) sethash(h_directive_table, do_s, cptr(coerce(mem_t *, h_do))); sethash(h_directive_table, require_s, cptr(coerce(mem_t *, hv_trampoline))); sethash(h_directive_table, assert_s, cptr(coerce(mem_t *, h_assert))); + sethash(h_directive_table, line_s, cptr(coerce(mem_t *, hv_trampoline))); sethash(non_matching_directive_table, block_s, t); sethash(non_matching_directive_table, accept_s, t); |