]> git.donarmstrong.com Git - lilypond.git/commitdiff
LSR - local run of makelsr
authorPhil Holmes <mail@philholmes.net>
Wed, 4 Apr 2012 14:47:29 +0000 (15:47 +0100)
committerPhil Holmes <mail@philholmes.net>
Wed, 4 Apr 2012 15:14:04 +0000 (16:14 +0100)
Documentation/snippets/displaying-grob-ancestry.ly
Documentation/snippets/formatting-lyrics-syllables.ly
Documentation/snippets/hymn-template.ly
Documentation/snippets/partcombine-and-autobeamoff.ly
Documentation/snippets/screech-boink.ly
Documentation/snippets/staff-headword.ly
Documentation/snippets/woodwind-diagrams-key-lists.ly

index c05e1369a8d37be74865370c90750680adc86f36..3a20732484400e6096b21c79fcf5bc399a3c15c6 100644 (file)
@@ -195,10 +195,11 @@ NoteHead X,Y: NoteColumn
     (format #f "~&")))
 
 #(define (display-ancestry grob)
-   (format (current-error-port)
-      "~3&~a~2%~a~&"
-      (make-string 36 #\-)
-      (format-ancestry (get-ancestry grob) 0)))
+   (display
+    (string-append
+     (format #f "~3&~a~2%" (make-string 36 #\-))
+     (format-ancestry (get-ancestry grob) 0)
+     (format #f "~2&"))))
 
 \relative c' {
   \once \override NoteHead #'before-line-breaking = #display-ancestry
index e6fe2e6c34e42a82adc41c399d0fc4e790660e82..7e46edbd44aed2b68f25de088df322f9f0bcf8c8 100644 (file)
@@ -16,7 +16,6 @@ individuales dentro de la letra.
 
 "
   doctitlees = "Dar formato a sílabas de la letra"
-
 %%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
   texidocde = "
 Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
@@ -24,7 +23,6 @@ zu formatieren.
 
 "
   doctitlede = "Silben im Gesangstext formatieren"
-
 %%  Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
   texidocfr = "
 Le mode markup permet d'individualiser la mise en forme de certaines syllabes.
index d2d680e43dfea62090a156715ec1e9f0c6aa7c6a..b8af195da3061d7efafc9ed554bbdc6866882ef8 100644 (file)
@@ -27,7 +27,6 @@ strofe come testo separato sotto la musica.
 
 "
   doctitleit = "Modello per inno"
-
 %%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
 
   texidocde = "
index bf5fb3e519f6c174cca955b991465fdd9f6d0f31..fb3f88f3409a22923d0ebf63d4045387a98a4ba8 100644 (file)
@@ -47,7 +47,6 @@ necesario hacer tres llamadas a @code{\\autoBeamOff}.
 
 "
   doctitlees = "Partcombine y autoBeamOff"
-
 %%   Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
 
   texidocde = "
@@ -79,7 +78,6 @@ wenn man es mit @code{\\partcombine} verwendet, muss @code{\\autoBeamOff}
 "
 doctitlede = "Partcombine und autoBeamOff"
 
-
 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
   texidocfr = "
 La fonction @code{\\autoBeamOff} dans le cadre d'un
index 88fefa9414a7d9fa9eab0342ea638f6e8ad0f25d..92315a87b26dd7b196af4e98b9a670c393c45e6b 100644 (file)
@@ -4,7 +4,7 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.14.0
+%% Note: this file works from version 2.15.32
 \version "2.15.32"
 \header {
   lsrtags = "headwords"
index 461e543c1885c51dd533a91db68644b3a9f8dfeb..1ffa89b9a8d99a5817e340910d3c397d9166ec89 100644 (file)
@@ -4,7 +4,7 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.14.0
+%% Note: this file works from version 2.15.32
 \version "2.15.32"
 \include "catalan.ly"
 #(set-global-staff-size 15)
index 22dea409c02bf9c91fa10c878b63bc2f1ebac0db..2fa0b102e4bac3f82cdde2ae076dea7fbf055737 100644 (file)
@@ -29,8 +29,11 @@ instrucciones.
   texidocde="
 Dieses Schnipsel erzeugt eine Liste aller möglichen Löcher und Locheinstellungen
 für Holzbläserdiagramme, wie sie in der Datei
-@file{scm/define-woodwind-diagrams.scm} definiert sind.  Die Liste wird auf
-der Kommandozeile und in der Log-Datei angezeigt, nicht in den Noten.
+@file{scm/define-woodwind-diagrams.scm} definiert sind.  Die Liste wird
+in der Log-Datei angezeigt, nicht in den Noten.  Wenn Ausgabe auf der Kommandozeile
+gewünscht ist, muss  @code{(current-error-port)} von den Befehlen weggelassen
+werden.
+
 "
   doctitlede = "Liste der Löcher für Holzbläserdiagramme"