]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-alternative-flag-styles.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / using-alternative-flag-styles.ly
index 63c58cba992f94a4fac28dfdaac14df6b3cc2f07..b037233ba4f45cb10638fa8726a75340f81e2d98 100644 (file)
@@ -1,20 +1,25 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.16"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.15.15
+\version "2.16.0"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
 
   texidoc = "
 Alternative styles of flag on eighth and shorter notes can be displayed
-by overriding the @code{flag} property of @code{Stem}.  Valid values
+by overriding the @code{stencil} property of @code{Flag}.  Valid values
 are @code{modern-straight-flag} and @code{old-straight-flag}.
 
 "
   doctitle = "Using alternative flag styles"
 } % begin verbatim
 
+
 testnotes = {
   \autoBeamOff
   c8 d16 c32 d64 \acciaccatura { c8 } d64 r4
@@ -24,13 +29,12 @@ testnotes = {
   \time 2/4
   \testnotes
 
-  \override Stem #'flag = #modern-straight-flag
+  \override Flag #'stencil = #modern-straight-flag
   \testnotes
 
-  \override Stem #'flag = #old-straight-flag
+  \override Flag #'stencil = #old-straight-flag
   \testnotes
 
-  \revert Stem #'flag
+  \revert Flag #'stencil
   \testnotes
 }
-