]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly
Doc: CG: clarify "amend previous commit".
[lilypond.git] / Documentation / snippets / using-ly-grob-object-to-access-grobs-with--tweak.ly
index 5e38377ccfaa3773894baf2080609d9872d650da..bca9df17dcb1e7227242eeff282a3d520e264520 100644 (file)
@@ -1,15 +1,16 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.10"
+% Do not edit this file; it is automatically
+% generated from Documentation/snippets/new
+% This file is in the public domain.
+%% Note: this file works from version 2.13.10
+\version "2.13.16"
 
 \header {
   lsrtags = "tweaks-and-overrides"
 
   texidoc = "
 Some grobs can be accessed @qq{laterally} from within another grob's
-callback. These are usually listed as @qq{layout objects} in the
-@qq{Internal properties} section of a grob-interface. The function
+callback.  These are usually listed as @qq{layout objects} in the
+@qq{Internal properties} section of a grob-interface.  The function
 @code{ly:grob-object} is used to access these grobs.
 
 
@@ -27,14 +28,19 @@ accessed.
 Example console output:
 
 
--------------------- #-Grob Accidental - #-Grob Arpeggio - #-Grob Stem -
-
+@example
+--------------------
+#-Grob Accidental -
+#-Grob Arpeggio -
+#-Grob Stem -
+@end example
 
 
 "
   doctitle = "Using ly:grob-object to access grobs with \\tweak"
 } % begin verbatim
 
+
 #(define (notehead-get-accidental notehead)
    ;; notehead is grob
    (ly:grob-object notehead 'accidental-grob))
@@ -72,4 +78,3 @@ Example console output:
   es
   g>1\arpeggio
 }
-