]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove obsolete snippet.
authorNeil Puttock <n.puttock@gmail.com>
Fri, 4 Jul 2008 15:44:54 +0000 (16:44 +0100)
committerNeil Puttock <n.puttock@gmail.com>
Fri, 4 Jul 2008 15:44:54 +0000 (16:44 +0100)
input/new/move-specific-text.ly [deleted file]

diff --git a/input/new/move-specific-text.ly b/input/new/move-specific-text.ly
deleted file mode 100644 (file)
index c25c6a5..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-\version "2.10.0"
-% possible rename to scheme- or something like that.  -gp
-\header {
-  lsrtags = "tweaks-and-overrides"
-  texidoc = "@cindex Scheme Move Text
-Objects of the same type, like text, can be moved around by using some Scheme code.
-"
-  doctitle = "Move specific text"
-}
-
-#(define (make-text-checker text)
-   (lambda (grob) (equal? text (ly:grob-property grob 'text))))
-
-\score {
-  \relative c''' {
-    \stemUp
-    \applyOutput #'Voice
-    #(outputproperty-compatibility
-      (make-text-checker (make-simple-markup "m.d."))
-      'extra-offset '(-3.5 . -4.5))
-    a^2^"m.d."
-  }
-  \layout { }
-}