make it a little cleaner

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5699 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-03-26 03:09:19 +00:00
parent 6561a79eb6
commit b3135ad37a

View File

@ -184,14 +184,7 @@ sub emit ( $ ) {
# Jacket for emit() that produces the same result as 'emit join( "\n", ... )' # Jacket for emit() that produces the same result as 'emit join( "\n", ... )'
# #
sub emitj { sub emitj {
if ( $object ) { emit join ( "\n", @_ ) if $object;
#
# 'compile' as opposed to 'check'
#
for my $line ( @_ ) {
emit $line;
}
}
} }