]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/chord-modifiers-init.ly
apply Julian's patch to fix install-info warnings
[lilypond.git] / ly / chord-modifiers-init.ly
index 713062b2f14e164e0970db42ab6e2f1689f69e92..75b804bb051aeb455676df081c5960d03485997a 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.6.0"
+\version "2.14.0"
 
 chordmodifiers = #default-chord-modifier-list
 
@@ -13,8 +13,6 @@ whiteTriangleMarkup = \markup {
   
   %% up pointing triangle
   % #(ly:export (ly:wide-char->utf-8 #x25B3))
-  
-  %% \override #'(font-encoding . TeX-math) \char #77
 } 
 
 blackTriangleMarkup = \markup {
@@ -34,9 +32,6 @@ ignatzekExceptionMusic = {
        <c es ges beses>-\markup { \super  "o7" }
 }
 
-ignatzekExceptions = #(sequential-music-to-chord-exceptions
-                      ignatzekExceptionMusic #t)
-
 partialJazzMusic = {
     <c d>1-\markup { \normal-size-super "2" }
     <c es>-\markup { "m" }
@@ -48,11 +43,21 @@ partialJazzMusic = {
     <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
 }
 
+powerChordSymbol = {
+    <c g>-\markup { \normal-size-super "5" }
+    <c g c'>1-\markup { \normal-size-super "5" }
+}
+
+
 %% TODO: compatibility ignatzek code
-fullJazzExceptions = #(sequential-music-to-chord-exceptions
-                       ignatzekExceptionMusic #f)
+fullJazzExceptions=
+#(sequential-music-to-chord-exceptions ignatzekExceptionMusic #f)
+
+partialJazzExceptions=
+#(sequential-music-to-chord-exceptions partialJazzMusic #f)
 
-partialJazzExceptions = #(sequential-music-to-chord-exceptions
-                          partialJazzMusic #f)
+powerChordExceptions =
+  #(sequential-music-to-chord-exceptions powerChordSymbol #t)
 
-                      
+ignatzekExceptions  =
+#(sequential-music-to-chord-exceptions ignatzekExceptionMusic #t)