From: Jan Nieuwenhuizen Date: Thu, 1 Jul 2004 21:36:09 +0000 (+0000) Subject: (try_parse_chord_delims): Bugfix: update to X-Git-Tag: release/2.2.4~4^2~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5d25221b2fb8333fd8d1289f87e5d66009d7646e;p=lilypond.git (try_parse_chord_delims): Bugfix: update to 2.0 chord syntax. Ouch. (thanks Dave Phillips). --- diff --git a/ChangeLog b/ChangeLog index 74a51bc225..9ee0a70f0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-07-01 Jan Nieuwenhuizen + + * scripts/abc2ly.py (try_parse_chord_delims): Bugfix: update to + 2.0 chord syntax. Ouch. (thanks Dave Phillips). + 2004-07-01 Nicolas Sceaux * scm/output-gnome.scm: updated instructions for running gnome 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 = ''