scripts: update 'comment.pl' so it understand /*

This commit is contained in:
Daniel Marjamäki 2011-01-06 20:53:22 +01:00
parent 1b3a5ed0be
commit 5eeb18dcd7
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ sub checkfile
} }
# set comment variable # set comment variable
if ($line =~ /\/\//) if (($line =~ /\/\//) || ($line =~ /\/\*/))
{ {
$comment = 1; $comment = 1;
} }