]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/hairpins-with-different-line-styles.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / hairpins-with-different-line-styles.ly
index 9ba4a075946af938829623839881dc1204ea6e14..ebfcda051323494a825a957fc9d52209c452a18a 100644 (file)
@@ -1,7 +1,10 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.16"
+\version "2.17.6"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
@@ -14,19 +17,19 @@ dotted-line, line, trill or zigzag.
   doctitle = "Hairpins with different line styles"
 } % begin verbatim
 
+
 \relative c' {
   c2\< c\!
-  \override Hairpin #'style = #'dashed-line
+  \override Hairpin.style = #'dashed-line
   c2\< c\!
-  \override Hairpin #'style = #'dotted-line
+  \override Hairpin.style = #'dotted-line
   c2\< c\!
-  \override Hairpin #'style = #'line
+  \override Hairpin.style = #'line
   c2\< c\!
-  \override Hairpin #'style = #'trill
+  \override Hairpin.style = #'trill
   c2\< c\!
-  \override Hairpin #'style = #'zigzag
+  \override Hairpin.style = #'zigzag
   c2\< c\!
-  \revert Hairpin #'style
+  \revert Hairpin.style
   c2\< c\!
 }
-