]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/document-functions.scm
Run `make grand-replace'.
[lilypond.git] / scm / document-functions.scm
index 85e6219f784895f3d4644f1ec96107b1b81c9c88..585ae13471e59923f94a1e25e57aee4da6960474 100644 (file)
@@ -2,7 +2,7 @@
 ;;;;
 ;;;;  source file of the GNU LilyPond music typesetter
 ;;;; 
-;;;; (c)  1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+;;;; (c) 1998--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
 
 (use-modules
     '() (ly:get-all-function-documentation)))
 
 (define (all-scheme-functions-doc)
-  (let*
-      ((fdocs (map (lambda (x)
-               (document-scheme-function (car x) (cadr x) (cddr x))
-               )
-             all-scheme-functions)
-        )
-       (sfdocs (sort fdocs string<?))) 
+  (let* ((fdocs (map (lambda (x)
+                      (document-scheme-function (car x) (cadr x) (cddr x)))
+                    all-scheme-functions))
+        (sfdocs (sort fdocs string<?))) 
     (make <texi-node>
       #:name "Scheme functions"
-      #:desc "Primitive functions exported by LilyPond"
+      #:desc "Primitive functions exported by LilyPond."
       #:text
-      (apply string-append sfdocs)) 
-  ))
+      (apply string-append sfdocs))))
 
-
-; (dump-node (all-scheme-functions-doc)  (current-output-port) 0 )
+;; (dump-node (all-scheme-functions-doc)  (current-output-port) 0 )