1
0
mirror of synced 2026-01-19 09:08:30 +00:00

Merge commit '4021344'

This commit is contained in:
Axel Beckert 2010-07-15 18:21:01 +02:00
commit 3adee1bc2d

View File

@ -59,7 +59,7 @@ sub testFile
#
# Test we discovered some documented options.
#
ok( $#documented > 1, "We found some options documented." );
ok( $#documented > 1, "We found some options documented in $file." );
@ -105,11 +105,11 @@ sub testFile
#print " - strip comments : $o ";
#
# Remove "" from around it.
# Remove "" or '' around it.
#
if ( $o =~ /"([^"]+)"/ )
if ( $o =~ /(["'])([^"']+)\1/ )
{
$o = $1;
$o = $2;
}
#print " - remove quotes : $o ";
#