Skip to content

Commit

Permalink
Track changes in chord stringification in abc2ly.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Jun 25, 2012
1 parent db67a22 commit 719c0aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/abc2ly
Expand Up @@ -282,7 +282,7 @@ class TuneConvertor {
when "chord_or_text" {
for @($element.value) -> $chord_or_text {
if $chord_or_text ~~ ABC::Chord {
$suffix ~= '^"' ~ $chord_or_text ~ '"';
$suffix ~= '^' ~ $chord_or_text ~ " ";
} else {
given $element.value {
when /^ '^'(.*)/ { $suffix ~= '^"' ~ $0 ~ '" ' }
Expand Down

0 comments on commit 719c0aa

Please sign in to comment.