]> git.donarmstrong.com Git - lilypond.git/commitdiff
(try_parse_chord_delims): Bugfix: update to
authorJan Nieuwenhuizen <janneke@gnu.org>
Thu, 1 Jul 2004 21:36:09 +0000 (21:36 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Thu, 1 Jul 2004 21:36:09 +0000 (21:36 +0000)
2.0 chord syntax.  Ouch.  (thanks Dave Phillips).

ChangeLog
scripts/abc2ly.py

index 74a51bc225b6845705a7082bbcbff0f0f9e19f3d..9ee0a70f0eeda6ff8bafc6d859b0c18ec886fd25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-01  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * scripts/abc2ly.py (try_parse_chord_delims): Bugfix: update to
+       2.0 chord syntax.  Ouch.  (thanks Dave Phillips).
+
 2004-07-01  Nicolas Sceaux  <nicolas.sceaux@free.fr>
 
        * scm/output-gnome.scm: updated instructions for running gnome
index 2e6181b16637760589d8e4ec854ef45e3fba6800..7f34bbfd9c21ed4ba7469050d624de61fc552c6b 100644 (file)
@@ -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 = ''