]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/document-context-mods.scm
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / scm / document-context-mods.scm
index 0695008d493ccf10352e3b4f21de1535d3571b99..aa239e71ea5ea193e7bfaf4aa5713c3314669627 100644 (file)
@@ -1,6 +1,6 @@
 ;;;; This file is part of LilyPond, the GNU music typesetter.
 ;;;;
-;;;; Copyright (C) 2011--2014 Neil Puttock <n.puttock@gmail.com>
+;;;; Copyright (C) 2011--2015 Neil Puttock <n.puttock@gmail.com>
 ;;;;
 ;;;; LilyPond is free software: you can redistribute it and/or modify
 ;;;; it under the terms of the GNU General Public License as published by
        (let ((value (car args))
              (path (cdr args)))
          (string-append
-          (format "@item Sets grob property @code{~a} "
+          (format #f "@item Sets grob property @code{~a} "
                   (grob-property-path path))
-          (format "in @code{@rinternals{~a}} to" name-sym)
+          (format #f "in @code{@rinternals{~a}} to" name-sym)
           (if (pretty-printable? value)
-            (format ":~a\n" (scm->texi value))
-            (format " ~a.\n" (scm->texi value))))))
+            (format #f ":~a\n" (scm->texi value))
+            (format #f " ~a.\n" (scm->texi value))))))
       ((pop)
        (string-append
-        (format "@item Reverts grob property @code{~a} "
+        (format #f "@item Reverts grob property @code{~a} "
                 (grob-property-path (car args)))
-        (format "in @code{@rinternals{~a}}.\n"
+        (format #f "in @code{@rinternals{~a}}.\n"
                 name-sym)))
       ((assign)
        (string-append
-         (format "@item Sets translator property @code{~a} to" name-sym)
+         (format #f "@item Sets translator property @code{~a} to" name-sym)
          (if (pretty-printable? value)
-           (format ":~a\n" (scm->texi (car args)))
-           (format " ~a.\n" (scm->texi (car args))))))
+           (format #f ":~a\n" (scm->texi (car args)))
+           (format #f " ~a.\n" (scm->texi (car args))))))
       ((unset)
-       (format "@item Unsets translator property @code{~a}.\n"
+       (format #f "@item Unsets translator property @code{~a}.\n"
                name-sym))
       ((consists)
-       (format "@item Adds @code{@rinternals{~a}}.\n" name-sym))
+       (format #f "@item Adds @code{@rinternals{~a}}.\n" name-sym))
       ((remove)
-       (format "@item Removes @code{@rinternals{~a}}.\n" name-sym))
+       (format #f "@item Removes @code{@rinternals{~a}}.\n" name-sym))
       (else ""))))
 
 (define (document-context-mod context-mod-pair)
@@ -62,7 +62,7 @@
          (docstring (filter (lambda (mod)
                               (eq? (car mod) 'description))
                             mod-list)))
-    (format
+    (format #f
      "@item @code{~a}
 @findex ~a
 ~a
@@ -84,7 +84,7 @@
        (document-context-mod obj-pair)))
 
 (define context-mods-doc-string
-  (format
+  (format #f
    "@table @asis
 ~a
 @end table