From: Jan Nieuwenhuizen Date: Thu, 1 Jul 2004 22:14:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.2.4~5 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8d4964be29073c249c390242a237d7dbf2f034cd;p=lilypond.git *** empty log message *** --- diff --git a/scripts/abc2ly.py b/scripts/abc2ly.py index 2e6181b166..7f34bbfd9c 100644 --- a/scripts/abc2ly.py +++ b/scripts/abc2ly.py @@ -1190,18 +1190,18 @@ def try_parse_chord_delims (str, state): if state.next_bar: voices_append(state.next_bar) state.next_bar = '' - voices_append ('<') + voices_append ('<<') if str[:1] == '+': str = str[1:] if state.plus_chord: - voices_append ('>') + voices_append ('>>') state.plus_chord = 0 else: if state.next_bar: voices_append(state.next_bar) state.next_bar = '' - voices_append ('<') + voices_append ('<<') state.plus_chord = 1 ch = ''