]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/generic-output-property.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / generic-output-property.ly
index c5dc8a2dd6cbf6eb7a9603250834b389da08aa3b..809cc7718d0fc21946437924702d2907c75c5465 100644 (file)
@@ -1,31 +1,27 @@
 
-\version "2.3.4"
+\version "2.19.24"
 
 \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
 }
 
+