Skip to content

Commit c3602ea

Browse files
committed
genhtml: Allow prefix paths with spaces
Signed-off-by: Peter Oberparleiter <[email protected]>
1 parent a357297 commit c3602ea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bin/genhtml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5726,7 +5726,7 @@ sub remove_unused_descriptions()
57265726
sub apply_prefix($@)
57275727
{
57285728
my $filename = shift;
5729-
my @dir_prefix = @_;
5729+
my @dir_prefix = @_;
57305730

57315731
if (@dir_prefix)
57325732
{
@@ -6005,7 +6005,6 @@ sub parse_dir_prefix(@)
60056005
return if (!@opt_dir_prefix);
60066006

60076007
foreach $item (@opt_dir_prefix) {
6008-
$item =~ s/\s//g;
60096008
if ($item =~ /,/) {
60106009
# Split and add comma-separated parameters
60116010
push(@dir_prefix, split(/,/, $item));

0 commit comments

Comments
 (0)