]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/outputting-the-version-number.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / outputting-the-version-number.ly
index 05c1e88a76ecb9de1424f74369ecd0d505ea84a8..5e99a2ad33b14a207e2aff61eb6e6254fdca539d 100644 (file)
@@ -1,24 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.unimi.it
 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "really-simple, text, titles, scheme-language"
-
-%% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
-  texidocfr = "
-L'insertion du résultat de @code{lilypond-version} dans des paroles
-permet d'ajouter à la partition ou au document généré par
-@code{lilypond-book} le numéro de la version de LilyPond utilisée.  Une
-autre possibilité consiste à l'ajouter à une chaîne textuelle comme
-ci-dessous.
-
-"
-  doctitlefr = "Impression du numéro de version"
+  lsrtags = "really-simple, scheme-language, text, titles"
 
   texidoc = "
 By putting the output of
@@ -31,14 +20,10 @@ By putting the output of
   doctitle = "Outputting the version number"
 } % begin verbatim
 
-
 \score {
   \new Lyrics {
-    \override Score.RehearsalMark #'self-alignment-X = #LEFT
+    \override Score.RehearsalMark.self-alignment-X = #LEFT
     \mark #(string-append "Processed with LilyPond version " (lilypond-version))
     s2
   }
 }
-
-
-