Skip to content

Commit

Permalink
properly parse L<"local section"> as L<local section>
Browse files Browse the repository at this point in the history
  • Loading branch information
dk committed Oct 9, 2024
1 parent fd40620 commit 37df9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Prima/Drawable/Pod.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,7 @@ sub parse_link
} else {
$section = $s;
}
$item = 0 if $section =~ s/^\"(.*?)\"$/$1/;
$item = 0 if $section =~ s/^\"(.*?)\"$/$1/ && length($page);

if ( !length $page) {
my $tid = -1;
Expand Down

0 comments on commit 37df9d2

Please sign in to comment.