Avoid early return in process_action()

This commit is contained in:
Tom Eastep 2011-01-08 14:05:27 -08:00
parent 6143c7ddbd
commit 8dc60e788f

View File

@ -689,9 +689,7 @@ sub process_action( $) {
if ( $targets{$action} & BUILTIN ) {
$level = '' if $level =~ /none!?/;
$builtinops{$action}->( $chainref, $level, $tag, $param );
return;
}
} else {
my $actionfile = find_file "action.$action";
my $format = 1;
@ -754,6 +752,7 @@ sub process_action( $) {
pop_open;
pop_params( $oldparms );
}
}
#