Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Pod configuration regression.
  • Loading branch information
jnthn committed Mar 16, 2013
1 parent c57f0d5 commit 52f04a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Perl6/Pod.pm
Expand Up @@ -86,8 +86,8 @@ class Perl6::Pod {
# This is a cheaty and evil hack. This is also the only way
# I can obtain this information without reimplementing
# <colonpair> entirely
if $colonpair<circumfix> {
$val := $colonpair<circumfix>;
if $colonpair<coloncircumfix><circumfix> {
$val := $colonpair<coloncircumfix><circumfix>;
if $val<nibble> {
$val := $*W.colonpair_nibble_to_str($/, $val<nibble>);
} else {
Expand Down

0 comments on commit 52f04a7

Please sign in to comment.