]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/glissandi-can-skip-grobs.ly
Merge branch 'master' into translation
[lilypond.git] / Documentation / snippets / glissandi-can-skip-grobs.ly
index 744d46490960b7c48e77dbffc9034c81b5cc8c35..f9e7632cad75d005142db57ba4a1ec1171889980 100644 (file)
@@ -1,26 +1,23 @@
-% 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.12
-\version "2.15.12"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.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.18.0"
 
 \header {
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  texidocfr = "
-Un glissando peut sauter un objet @code{NoteColumn}.
+  lsrtags = "expressive-marks, staff-notation, tweaks-and-overrides"
 
-"
-  doctitlefr = "Glissando par dessus un objet graphique"
+  texidoc = "
+@code{NoteColumn} grobs can be skipped over by glissandi.
 
-  lsrtags = "expressive marks, staff-notation, tweaks-and-overrides"
-  texidoc = "@code{NoteColumn} grobs can be skipped over by glissandi."
-}
+"
+  doctitle = "Glissandi can skip grobs"
+} % begin verbatim
 
 \relative c' {
   a2 \glissando
-  \once \override NoteColumn #'glissando-skip = ##t
+  \once \override NoteColumn.glissando-skip = ##t
   f''4 d,
 }