]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/drawing-boxes-around-grobs.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / drawing-boxes-around-grobs.ly
index 5898ce7f3c549fff25cbe7c413527063332fd701..473d51eeed7e34108a8b843f0ade545da1a3faa6 100644 (file)
@@ -1,19 +1,23 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.4"
+\version "2.15.40"
 
 \header {
-  lsrtags = "editorial-annotations, tweaks-and-overrides"
+  lsrtags = "scheme-language, editorial-annotations, tweaks-and-overrides"
 
   texidoc = "
 The @code{print-function} can be overridden to draw a box around an
-arbitrary grob.  
+arbitrary grob.
 
 "
   doctitle = "Drawing boxes around grobs"
 } % begin verbatim
 
+
 \relative c'' {
   \override TextScript #'stencil =
     #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
@@ -24,12 +28,11 @@ arbitrary grob.
   \override Score.RehearsalMark  #'stencil =
     #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
   b8
-  
+
   \revert Stem #'stencil
+
+  \revert Flag #'stencil
   c4. c4
   \mark "F"
   c1
 }
-
-
-