]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/drawing-boxes-around-grobs.ly
Remove snippets moved to LSR.
[lilypond.git] / input / new / drawing-boxes-around-grobs.ly
diff --git a/input/new/drawing-boxes-around-grobs.ly b/input/new/drawing-boxes-around-grobs.ly
deleted file mode 100644 (file)
index 9d53c90..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-\version "2.12.0"
-\header {
-  lsrtags = "tweaks-and-overrides"
-  texidoc = "
-The @code{print-function} can be overridden to draw a box around an
-arbitrary grob.
-"
-  doctitle = "Drawing boxes around grobs"
-}
-
-\relative c'' {
-  \override TextScript #'stencil =
-    #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
-  c'4^"foo"
-
-  \override Stem #'stencil =
-    #(make-stencil-boxer 0.05 0.25 ly:stem::print)
-  \override Score.RehearsalMark  #'stencil =
-    #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
-  b8
-  
-  \revert Stem #'stencil
-  c4. c4
-  \mark "F"
-  c1
-}