From 6a339b6b889349be35c7822709c253b0e8d10eb0 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 5 Nov 2011 21:45:17 -0700 Subject: * match.c (dir_tables_init): Bugfix: horizontal @(some) directive not included in dispatch table. --- ChangeLog | 5 +++++ match.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 144aa482..d4d6597e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-11-05 Kaz Kylheku + + * match.c (dir_tables_init): Bugfix: horizontal @(some) + directive not included in dispatch table. + 2011-11-05 Kaz Kylheku * configure: Bugfixes. Before the compiler tests, we must diff --git a/match.c b/match.c index 4716e724..e283e338 100644 --- a/match.c +++ b/match.c @@ -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)); -- cgit v1.2.3