]> git.donarmstrong.com Git - lilypond.git/commitdiff
@verbatim around { } in docstrings
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 6 Dec 2006 16:44:21 +0000 (17:44 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 6 Dec 2006 16:44:21 +0000 (17:44 +0100)
ly/music-functions-init.ly
scm/document-identifiers.scm

index fa18af6ce7dd6270f4c909f1519aca3eb926aa0f..f5342b052d53f84f7d6e5adf4dbf53157f0d53ab 100644 (file)
@@ -405,6 +405,8 @@ and assign them to the identifiers provided in @var{voice-ids}.
 @var{music}: a music sequence, containing BarChecks as limiting expressions.
 
 Example:
+
+@verbatim
   \\parallelMusic #'(A B C) {
     c c | d d | e e |
     d d | e e | f f |
@@ -413,6 +415,7 @@ Example:
   A = { c c | d d | }
   B = { d d | e e | }
   C = { e e | f f | }
+@end verbatim
 "
   (let* ((voices (apply circular-list (make-list (length voice-ids) (list))))
          (current-voices voices)
index 83c4fbd721142d76ffdd3b50b0a6addd88967522..736da249048bbc223512a54845aacb83757a0100 100644 (file)
@@ -1,3 +1,13 @@
+;;
+;; document-identifiers.scm -- implement documentation
+;; of identifiers from .ly file.
+;; 
+;; source file of the GNU LilyPond music typesetter
+;; 
+;; (c) 2006 Han-Wen Nienhuys <hanwen@lilypond.org>
+;; 
+
+
 (use-modules (ice-9 format))
 
 (define (document-music-function music-func-pair)