]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/drawing-boxes-around-grobs.ly
Merge branch 'master' into translation
[lilypond.git] / Documentation / snippets / drawing-boxes-around-grobs.ly
index d8389c7a42c8dfb4636e938e03bd73d9566d029b..8059c2d011e34a79c549c3931e003c4a5bb8ce60 100644 (file)
@@ -1,34 +1,36 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.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.1"
+\version "2.18.0"
 
 \header {
-  lsrtags = "editorial-annotations, tweaks-and-overrides"
+  lsrtags = "editorial-annotations, scheme-language, 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 =
+  \override TextScript.stencil =
     #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
   c'4^"foo"
 
-  \override Stem #'stencil =
+  \override Stem.stencil =
     #(make-stencil-boxer 0.05 0.25 ly:stem::print)
-  \override Score.RehearsalMark  #'stencil =
+  \override Score.RehearsalMark.stencil =
     #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
   b8
-  
-  \revert Stem #'stencil
+
+  \revert Stem.stencil
+  \revert Flag.stencil
   c4. c4
   \mark "F"
   c1
 }
-
-
-