]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/moving-slur-positions-vertically.ly
CG: note that CPU threads affect cell count in regtests (issue 3257)
[lilypond.git] / Documentation / snippets / moving-slur-positions-vertically.ly
index a28f605fdcd3b1d9a75a0907d1c5fb918100f6ce..4bae79c00f958731397fddd74aaa08cff21e5c26 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.11"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
@@ -28,24 +28,24 @@ slurs further down.
 \relative c' {
   \stemDown
   e4( a)
-  \override Slur #'positions = #'(1 . 1)
+  \override Slur.positions = #'(1 . 1)
   e4( a)
-  \override Slur #'positions = #'(2 . 2)
+  \override Slur.positions = #'(2 . 2)
   e4( a)
-  \override Slur #'positions = #'(3 . 3)
+  \override Slur.positions = #'(3 . 3)
   e4( a)
-  \override Slur #'positions = #'(4 . 4)
+  \override Slur.positions = #'(4 . 4)
   e4( a)
-  \override Slur #'positions = #'(5 . 5)
+  \override Slur.positions = #'(5 . 5)
   e4( a)
-  \override Slur #'positions = #'(0 . 5)
+  \override Slur.positions = #'(0 . 5)
   e4( a)
-  \override Slur #'positions = #'(5 . 0)
+  \override Slur.positions = #'(5 . 0)
   e4( a)
   \stemUp
-  \override Slur #'positions = #'(-5 . -5)
+  \override Slur.positions = #'(-5 . -5)
   e4( a)
   \stemDown
-  \revert Slur #'positions
+  \revert Slur.positions
   e4( a)
 }