]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/redefining-grace-note-global-defaults.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / redefining-grace-note-global-defaults.ly
index 9e2e2d696e3723ae9ec4412754de080f37dfdef5..150d9bebfea781f41d4fc6831ff13423974ea7a2 100644 (file)
@@ -1,12 +1,14 @@
-%% 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.39"
+% 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.15.15"
 
 \header {
-  lsrtags = "rhythms"
-
-%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 
 Los valores predeterminados para las notas de adorno están
@@ -49,6 +51,8 @@ plus de détails, voir le fichier @file{ly/grace-init.ly}.
 "
   doctitlefr = "Redéfinition des réglages de mise en forme par défaut des notes d'ornement"
 
+  lsrtags = "rhythms"
+
   texidoc = "
 The global defaults for grace notes are stored in the identifiers
 @code{startGraceMusic}, @code{stopGraceMusic},
@@ -61,14 +65,15 @@ other effects may be obtained.
   doctitle = "Redefining grace note global defaults"
 } % begin verbatim
 
+
 startAcciaccaturaMusic = {
   s1*0(
-  \override Stem #'stroke-style = #"grace"
+  \override Flag #'stroke-style = #"grace"
   \slurDashed
 }
 
 stopAcciaccaturaMusic = {
-  \revert Stem #'stroke-style
+  \revert Flag #'stroke-style
   \slurSolid
   s1*0)
 }