]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/repeat-percent-skipbars.ly
Changes to fix pdf doc creation, and some minor doc additions.
[lilypond.git] / input / regression / repeat-percent-skipbars.ly
index eeb2066c1b16bfd62448b8fda8284097c193a101..5668d1333840ba47467a2705baec9c587a4bb789 100644 (file)
@@ -1,18 +1,18 @@
-\version "2.1.7"
+\version "2.7.39"
 
 
 \header {
-texidoc = "Percent repeats are not skipped, even when skipBars is set.  "
+  texidoc = "Percent repeats are not skipped, even when @code{skipBars} is set."
 }
 
-    \paper { raggedright= ##t }
+\layout { ragged-right= ##t }
+
+
+\context Staff <<
+  \set Score.skipBars = ##t
+  {
+    \repeat "percent" 2 { g2 a g a }
+  }
+>>
 
-\score {
-     \context Staff <<
-       \property Score.skipBars = ##t
-       \notes {
-       \repeat "percent" 2 { g2 a g a }
-       }
-     >>
-}