*** empty log message ***
authorJan Nieuwenhuizen <janneke@gnu.org>
Thu, 1 Jul 2004 22:14:49 +0000 (22:14 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Thu, 1 Jul 2004 22:14:49 +0000 (22:14 +0000)
scripts/abc2ly.py

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 = ''