]> git.donarmstrong.com Git - lilypond.git/commitdiff
release commit
authorhanwen <hanwen>
Tue, 13 Jan 2004 15:00:20 +0000 (15:00 +0000)
committerhanwen <hanwen>
Tue, 13 Jan 2004 15:00:20 +0000 (15:00 +0000)
ChangeLog
scm/document-markup.scm

index f0b08468befb5669d696c8477700f93c8bf8dae1..4d483a85ca021ebf0836d4158188a61c76d33206 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2004-01-13  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * VERSION: release 2.1.9
+
+       * scm/document-markup.scm (markup-doc-node): add note about naming.
+
        * scm/new-markup.scm (left-align-markup): bugfix. 
 
        * Documentation/user/refman.itely (Ottava brackets): more doco for
index 85c2659adff415146f640c4828783458ef9e7b1d..7ff76fa3f77dd188a5942c0d7f4642f9f95acef4 100644 (file)
 (define (markup-doc-node)
   (make <texi-node>
     #:name "Markup functions"
-    #:desc "Definitions of the markup functions"
+    #:desc "Definitions of the markup functions."
+
+
     #:text (apply string-append
+                 
+                 "A @code{\\markup} mode command, eg. @code{bold}, is
+coupled with a Scheme function (@code{bold-markup}) implementing the
+formatting.  For use in Scheme, a function @code{make-bold-markup} is
+also defined, which constructs a Markup expression.
+
+This chapter describes all of the @code{...-markup} functions.
+
+"
+
                  (map doc-markup-function
                       (sort markup-function-list markup-function<?) ))
     ))