diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-11-05 21:45:17 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-11-05 21:45:17 -0700 |
commit | 6a339b6b889349be35c7822709c253b0e8d10eb0 (patch) | |
tree | 5de4d3317129c3b03f179fa4162aec9b873179f1 /match.c | |
parent | d44bbf2177ae706e15247ca08c5739c8156bf3cb (diff) | |
download | txr-6a339b6b889349be35c7822709c253b0e8d10eb0.tar.gz txr-6a339b6b889349be35c7822709c253b0e8d10eb0.tar.bz2 txr-6a339b6b889349be35c7822709c253b0e8d10eb0.zip |
* match.c (dir_tables_init): Bugfix: horizontal @(some)
directive not included in dispatch table.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2931,6 +2931,7 @@ static void dir_tables_init(void) sethash(h_directive_table, var_s, cptr((mem_t *) h_var)); sethash(h_directive_table, skip_s, cptr((mem_t *) h_skip)); sethash(h_directive_table, coll_s, cptr((mem_t *) h_coll)); + sethash(h_directive_table, some_s, cptr((mem_t *) h_parallel)); sethash(h_directive_table, all_s, cptr((mem_t *) h_parallel)); sethash(h_directive_table, none_s, cptr((mem_t *) h_parallel)); sethash(h_directive_table, maybe_s, cptr((mem_t *) h_parallel)); |