]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/move-specific-text.ly
(texidoc): cleanup.
[lilypond.git] / input / test / move-specific-text.ly
index f62949461a00b29174541c5fbe97c6274fc80fb7..d265a5d973df2eb85442a0684a5a0d407cb39465 100644 (file)
@@ -1,15 +1,20 @@
-\version "1.7.6"
+
+\version "2.3.17"
+% possible rename to scheme- or something like that.  -gp
+\header { texidoc = "@cindex Scheme Move Text
+Objects, like text, can be moved around by using some Scheme code.
+" }
 
 #(define (make-text-checker text)
-   (lambda (grob) (equal? text (ly:get-grob-property grob 'text))))
+   (lambda (grob) (equal? text (ly:grob-property grob 'text))))
 
 \score {
-  \notes\relative c''' {
-    \property Voice.Stem \set #'direction = #1
-    \outputproperty #(make-text-checker "m.d.")
-      #'extra-offset = #'(-3.5 . -4.5)
+  \relative c''' {
+    \override Stem  #'direction = #1
+    \applyoutput #(outputproperty-compatibility (make-text-checker (make-simple-markup "m.d."))
+      'extra-offset '(-3.5 . -4.5))
     a^2^"m.d."
   }
-  \paper { linewidth = -1. }
+  \paper { raggedright = ##t}
 }
-%% new-chords-done %%
+