]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/glissando-index.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / glissando-index.ly
index fad54433c2c3b0afe42637a37f3ca1ee80ea3d1d..4040202c27b31e5b73300498f08ec4e03039cd00 100644 (file)
@@ -1,12 +1,12 @@
-\version "2.14.0"
+\version "2.19.21"
 
 \header {
   texidoc = "Individual glissandi within a chord can be tweaked."
 }
 
-\relative c' {
-  \once \override Voice . Glissando #'style =
+\relative {
+  \once \override Voice.Glissando.style =
     #(lambda (grob)
-       (if (eq? 1 (ly:grob-property grob 'glissando-index)) 'zigzag 'default))
-  <d f a>1 \glissando s1 <f a c>
+       (if (= 1 (ly:grob-property grob 'glissando-index)) 'zigzag 'default))
+  <d' f a>1 \glissando s1 <f a c>
 }