From: Graham Percival <graham@percival-music.ca>
Date: Fri, 12 May 2006 12:50:23 +0000 (+0000)
Subject: Minor fixes from discussion.
X-Git-Tag: release/2.9.5~27
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1e907cc43f6ac67c2dedec84764accfd2bef21cf;p=lilypond.git

Minor fixes from discussion.
---

diff --git a/ChangeLog b/ChangeLog
index 42415c7d2a..309fb7b657 100644
--- 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.
diff --git a/Documentation/user/programming-interface.itely b/Documentation/user/programming-interface.itely
index 753ce05783..c99d7e6cbd 100644
--- a/Documentation/user/programming-interface.itely
+++ b/Documentation/user/programming-interface.itely
@@ -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::