From: Phil Holmes Date: Fri, 13 Apr 2012 11:55:27 +0000 (+0100) Subject: LSR updates X-Git-Tag: release/2.15.37-1~15 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f3b8b1ae20c89ac523e418ebd2d139b918bbf994;p=lilypond.git LSR updates --- diff --git a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly index 267119636c..ad3d37f4b0 100644 --- a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly +++ b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly @@ -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' { diff --git a/Documentation/snippets/automatic-beam-subdivisions.ly b/Documentation/snippets/automatic-beam-subdivisions.ly index 9c90f3375f..7eaf30d825 100644 --- a/Documentation/snippets/automatic-beam-subdivisions.ly +++ b/Documentation/snippets/automatic-beam-subdivisions.ly @@ -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" diff --git a/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly b/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly index 16e98228b8..09b792172e 100644 --- a/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly +++ b/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly @@ -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' {