]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/glissandi-can-skip-grobs.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / glissandi-can-skip-grobs.ly
index 744d46490960b7c48e77dbffc9034c81b5cc8c35..5f20fe5c6cd14a292f83f5d0a90b85d9c82eacaa 100644 (file)
@@ -4,23 +4,18 @@
 % 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"
+%% Note: this file works from version 2.16.0
+\version "2.17.6"
 
 \header {
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  texidocfr = "
-Un glissando peut sauter un objet @code{NoteColumn}.
-
-"
-  doctitlefr = "Glissando par dessus un objet graphique"
-
-  lsrtags = "expressive marks, staff-notation, tweaks-and-overrides"
+  lsrtags = "expressive-marks, staff-notation, tweaks-and-overrides"
+  doctitle = "Glissandi can skip grobs"
   texidoc = "@code{NoteColumn} grobs can be skipped over by glissandi."
-}
+} % begin verbatim
+
 
 \relative c' {
   a2 \glissando
-  \once \override NoteColumn #'glissando-skip = ##t
+  \once \override NoteColumn.glissando-skip = ##t
   f''4 d,
 }