| 626 | |
| 627 | |
| 628 | RULE * new_rule_actions( module_t * m, OBJECT * rulename, FUNCTION * command, |
| 629 | LIST * bindlist, int flags ) |
| 630 | { |
| 631 | RULE * const local = define_rule( m, rulename, m ); |
| 632 | RULE * const global = global_rule( local ); |
| 633 | set_rule_actions( local, actions_new( command, bindlist, flags ) ); |
| 634 | set_rule_actions( global, local->actions ); |
| 635 | return local; |
| 636 | } |
| 637 | |
| 638 | |
| 639 | /* |
no test coverage detected