]> git.donarmstrong.com Git - lilypond.git/commitdiff
LSR updates
authorPhil Holmes <mail@philholmes.net>
Fri, 13 Apr 2012 11:55:27 +0000 (12:55 +0100)
committerPhil Holmes <mail@philholmes.net>
Fri, 13 Apr 2012 12:27:38 +0000 (13:27 +0100)
Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
Documentation/snippets/automatic-beam-subdivisions.ly
Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly

index 267119636c9f3008a89303586e5bd636a1e1ad15..ad3d37f4b0479995986b29a38e7f1bb78e779887 100644 (file)
@@ -29,14 +29,11 @@ de la portée.
 
   texidoc = "
 This snippet shows how to bring the lyrics line closer to the staff.
-[This behaviour is no longer used from version 2.13 onwards.]
 
 "
   doctitle = "Adjusting lyrics vertical spacing"
 } % begin verbatim
 
-
-
 % Default layout:
 <<
   \new Staff \new Voice = melody \relative c' {
index 9c90f3375fae9a5a31326660699d5166e959f108..7eaf30d82584d22d9ebd2e5a46ee3f603c039320 100644 (file)
@@ -21,7 +21,7 @@ posiciones de pulso (tal y como se especifica en @code{beatLength}).
   texidoc = "
 Beams can be subdivided automatically.  By setting the property
 @code{subdivideBeams}, beams are subdivided at beat positions (as
-specified in @code{beatLength}).
+specified in @code{baseMoment}).
 
 "
   doctitle = "Automatic beam subdivisions"
index 16e98228b8b7c9ca233b39f60107fced80f36272..09b792172e54fbbecd58c7fdad8ab6d882f28a76 100644 (file)
@@ -78,8 +78,6 @@ Example console output:
   doctitle = "Using ly:grob-object to access grobs with \\tweak"
 } % begin verbatim
 
-
-
 #(define (notehead-get-accidental notehead)
    ;; notehead is grob
    (ly:grob-object notehead 'accidental-grob))
@@ -103,9 +101,9 @@ Example console output:
    (let ((accidental (notehead-get-accidental notehead))
          (arpeggio (notehead-get-arpeggio notehead))
          (stem (notehead-get-stem notehead)))
-     (format #t "~2&~a\n" (make-string 20 #\-))
+     (format (current-error-port) "~2&~a\n" (make-string 20 #\-))
      (for-each
-      (lambda (x) (format #t "~a\n" x))
+      (lambda (x) (format (current-error-port) "~a\n" x))
       (list accidental arpeggio stem))))
 
 \relative c' {