]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/generic-output-property.ly
Merge with git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond.git
[lilypond.git] / input / regression / generic-output-property.ly
index 9a07192b957a15063ef0a68b65baf2cfce8e7ab2..a6c05f5fbc5c79bfb18450acdc6c4f7fff2f40dc 100644 (file)
@@ -1,31 +1,27 @@
 
-\version "2.3.16"
+\version "2.10.0"
 
 \header{
-texidoc="
+  texidoc="
 As a last resort, the placement of grobs can be adjusted manually, by
 setting the @code{extra-offset} of a grob.
 "
 }
 
-\score{
-       \relative c''{
-           \context Bottom
-             \applyoutput #(outputproperty-compatibility
-                          (make-type-checker 'note-head-interface)
-                          'extra-offset '(2 . 3))
-           c2
-           c
-           \context Score {
-               \applyoutput #(outputproperty-compatibility (make-type-checker 'mark-interface) 'extra-offset '(-1 . 4))
-           }
-           \mark A
-           d1
-           \mark \default
-           e
-}
-\paper{
-       raggedright = ##t
-}
+\layout{ ragged-right = ##t }
+
+
+\relative c''{
+  \applyOutput #'Bottom #(outputproperty-compatibility
+                (make-type-checker 'note-head-interface)
+                'extra-offset '(2 . 3))
+  c2
+  c
+  \applyOutput #'Score #(outputproperty-compatibility (make-type-checker 'mark-interface) 'extra-offset '(-1 . 4))
+  \mark A
+  d1
+  \mark \default
+  e
 }
 
+