]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor fixes from discussion.
authorGraham Percival <graham@percival-music.ca>
Fri, 12 May 2006 12:50:23 +0000 (12:50 +0000)
committerGraham Percival <graham@percival-music.ca>
Fri, 12 May 2006 12:50:23 +0000 (12:50 +0000)
ChangeLog
Documentation/user/programming-interface.itely

index 42415c7d2a08b8a4b4523af7d6e9f4a90d008785..309fb7b657eff339661f212675ddd8c1192dd4fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@
        * Documentation/user/changing-defaults.itely: set up file to
        use eps image.
 
+       * Documentation/user/programming-interface.itely: changes
+       from mailist.
+
 2006-05-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
        * configure.in (LINK_GXX_STATICALLY): python 2.4 req.
index 753ce05783d8e64f57039084509e13f0ab8088bc..c99d7e6cbd72255f530b37df39a3b0115aa566ff 100644 (file)
@@ -385,6 +385,15 @@ will display
 @{ a, cis e fis g @}
 @end example
 
+By default, LilyPond will print these messages to the console along
+with all the other messages.  To split up these messages and save
+the results of @code{\display@{STUFF@}}, redirect the output to
+a file.
+
+@example
+lilypond file.ly >display.txt
+@end example
+
 
 @node Using LilyPond syntax inside Scheme
 @subsection Using LilyPond syntax inside Scheme
@@ -520,12 +529,9 @@ withAlt = #(define-music-function (parser location mag music) (number? ly:music?
 @node Markup programmer interface
 @section Markup programmer interface
 
-@c Please rewrite the second sentence; I don't understand its meaning. AS
-
-Markups are implemented as special Scheme functions.  When applied
-with as arguments an output definition (@code{\layout} or
-@code{\paper}), and a list of properties and other arguments, produce
-a Stencil object.
+Markups are implemented as special Scheme functions.  Markups are
+implemented as special Scheme functions which produce a
+Stencil object given a number of arguments.
 
 @menu
 * Markup construction in Scheme::