]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/document-backend.scm
* lily/lily-guile.cc (parse_symbol_list): strip spaces at the end.
[lilypond.git] / scm / document-backend.scm
index d41eabd3704a792403502a9349fc3e23a38243b5..a8df442aa3f7cb3438784a09a537bf49e2acea7a 100644 (file)
@@ -30,21 +30,17 @@ Interfaces:
 
 (define (interface-doc-string interface grob-description)
   (let*
-      (
-       (name (car interface))
+      ((name (car interface))
        (desc (cadr interface))
        (props (sort (caddr interface) symbol<?))
        (docfunc (lambda (pr)
                  (document-property
-                  pr 'backend grob-description )))
-       (propdocs (map docfunc props))
-       )
-    
+                  pr 'backend grob-description)))
+       (propdocs (map docfunc props)))
     (string-append
      desc
      "\n\n"
      (description-list->texi propdocs))
-
     ))