]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/user/advanced-notation.itely (Balloon help): idem.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 24 May 2006 12:04:37 +0000 (12:04 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 24 May 2006 12:04:37 +0000 (12:04 +0000)
* Documentation/user/changing-defaults.itely (Creating contexts): idem.

* Documentation/user/programming-interface.itely (Running a
function on all layout objects): idem.

* Documentation/user/introduction.itely (Automated engraving):
update \applyOutput syntax

ChangeLog
Documentation/user/advanced-notation.itely
Documentation/user/changing-defaults.itely
Documentation/user/introduction.itely
Documentation/user/programming-interface.itely

index f2a0a735f1dc022d490297f6f81de9c7460fdbce..3e2f1e8f8ef6506110009c8e11869d4de9bb6a95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
+       * Documentation/user/advanced-notation.itely (Balloon help): idem.
+
+       * Documentation/user/changing-defaults.itely (Creating contexts): idem.
+
+       * Documentation/user/programming-interface.itely (Running a
+       function on all layout objects): idem.
+
+       * Documentation/user/introduction.itely (Automated engraving):
+       update \applyOutput syntax
+
        * lily/lyric-combine-music-iterator.cc (start_new_syllable):
        remove debugging hook.
 
index a3f5fdbc7c46c96610de409c908fbda83c6b18e9..2a6a43edd505a567c9e428ac3182fe71fe8d6591 100644 (file)
@@ -1950,12 +1950,10 @@ balloon.  The primary purpose of this feature is to explain notation.
 The following example demonstrates its use.
 
 @lilypond[quote,verbatim,fragment,ragged-right,relative=2]
-\new Voice {
-  \applyOutput
-    #(add-balloon-text 'NoteHead "heads, or tails?"
-    '(1 . -3))
+\applyOutput #'Voice
+  #(add-balloon-text 'NoteHead "heads, or tails?"
+      '(1 . -3))
   c8
-}
 @end lilypond
 
 @noindent
index 8a4cf1c9605bbc272a41f1be6862ad2f1f666849..d6ef0ae43d8f336bbe96a3c54fc74df9db58ce25 100644 (file)
@@ -585,15 +585,15 @@ several levels.  For example, the @code{\applyOutput} command (see
 @code{\context}, it is usually applied to @context{Voice}
 
 @example
-\applyOutput #@var{function}   % apply to Voice
+\applyOutput #'@var{context} #@var{function}   % apply to Voice
 @end example
 
 To have it interpreted at the @context{Score} or @context{Staff} level use
 these forms
 
 @example
-\context Score \applyOutput #@var{function}
-\context Staff \applyOutput #@var{function}
+\context \applyOutput #'Score #@var{function}
+\context \applyOutput #'Staff #@var{function}
 @end example
 
 @end itemize
index 6f6aee468d8d1d4f039b31fec9316114c95252c8..57169827742bd242cec1cc7bf8252f11f141988d 100644 (file)
@@ -342,11 +342,11 @@ fragment.
    <d f g>
    \once \override NoteHead #'style = #'cross
    <d f g>
-   \applyOutput #mc-squared
+   \applyOutput #'Voice #mc-squared
    <d f g>
    <<
       { d8[ es-( fis^^ g] fis2-) }
-      \repeat unfold 5 { \applyOutput #mc-squared s8 }
+      \repeat unfold 5 { \applyOutput #'Voice #mc-squared s8 }
    >>
 }
 @end lilypond
index f58517ee625f5e09b7c77491a6a6f267cab38263..fe2c884da2a1d8814e66ff942ee749f5bfa67a56 100644 (file)
@@ -1099,14 +1099,15 @@ current bar number on the standard output during the compile:
 The most versatile way of tuning an object is @code{\applyOutput}.  Its
 syntax is
 @example
-\applyOutput @var{proc}
+\applyOutput @var{context} @var{proc}
 @end example
 
 @noindent
 where @var{proc} is a Scheme function, taking three arguments.
 
 When interpreted, the function @var{proc} is called for every layout
-object found in the context, with the following arguments:
+object found in the context @var{context}, with the following
+arguments:
 @itemize @bullet
 @item the layout object itself,
 @item the context where the layout object was created, and