]> git.donarmstrong.com Git - lilypond.git/commitdiff
Run scripts/auxiliar/update-with-convert-ly.sh
authorDavid Kastrup <dak@gnu.org>
Wed, 9 Nov 2011 10:54:11 +0000 (11:54 +0100)
committerDavid Kastrup <dak@gnu.org>
Wed, 16 Nov 2011 08:26:24 +0000 (09:26 +0100)
Documentation/snippets/conducting-signs,-measure-grouping-signs.ly
Documentation/snippets/heavily-customized-polymetric-time-signatures.ly
Documentation/snippets/new/conducting-signs,-measure-grouping-signs.ly
input/regression/display-lily-tests.ly
input/regression/measure-grouping.ly

index b1bcc610b2e715533c585113293d441fea34d88f..0ac5e808995cb15aa2ec9eb60480cc19abd8adde 100644 (file)
@@ -5,7 +5,7 @@
 %
 % This file is in the public domain.
 %% Note: this file works from version 2.14.0
-\version "2.15.18"
+\version "2.15.19"
 
 \header {
 %% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
@@ -116,7 +116,7 @@ is grouped according to the default setting in
     g8 g d d g g a( bes g) |
     \set Timing.beatStructure = #'(2 2 2 3)
     g8 g d d g g a( bes g) |
-    $(set-time-signature 9 8 '(4 5))
+    \time #'(4 5) 9/8
     g8 g d d g g a( bes g) |
     \time 5/8
     a4. g4 |
index d686d5d651cdcc3af340c0bdd66c0541961cd180..a7e08b3c8605f6836a6ab7d9f72ed366e10a025f 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.15.18"
+\version "2.15.19"
 
 \header {
   lsrtags = "rhythms, percussion"
@@ -37,7 +37,7 @@ is the template of a real Balkan song!).
 melody = \relative c'' {
   \set Staff.instrumentName = #"Bb Sop."
   \key g \major
-  $(set-time-signature 25 8 '(3 2 2 3 2 2 2 2 3 2 2))
+  \time #'(3 2 2 3 2 2 2 2 3 2 2) 25/8
   \override Staff.TimeSignature #'stencil =
     #(custom-time-signature "3" "2" "2" "3" "2" "2"
       "2" "2" "3" "2" "2" "8")
index 95af96054b16cf6bfa4c873969f05f7097c43d47..b2cf828d2fbb167939a299720cb1716371ede641 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.15.18"
+\version "2.15.19"
 
 \header {
   lsrtags = "rhythms"
@@ -35,7 +35,7 @@ is grouped according to the default setting in
     g8 g d d g g a( bes g) |
     \set Timing.beatStructure = #'(2 2 2 3)
     g8 g d d g g a( bes g) |
-    $(set-time-signature 9 8 '(4 5))
+    \time #'(4 5) 9/8
     g8 g d d g g a( bes g) |
     \time 5/8
     a4. g4 |
index 5c6e166fac01081355ce5bce6f3266b7623f7931..45b62e468be8ad4932747f30a20bdd7d0b823824 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.15.18"
+\version "2.15.19"
 #(use-modules (srfi srfi-13)
               (ice-9 format))
 
@@ -175,7 +175,7 @@ stderr of this run."
 \test "" ##[ \clef "french^2" #]
 \test "" ##[ \clef "alto_3" #]
 \test "" ##[ \time 2/4 #]
-\test "" ##[ $(set-time-signature 5 8 '(3 2)) #]
+\test "" ##[ \time #'(3 2) 5/8 #]
 \test "" ##[ \bar "|." #]
 
 %% staff switches
index bd565e7ad5969af99dc8335e68ad808a732b0948..7fe36f4fe14affab9045762f2f283b760a512693 100644 (file)
@@ -7,7 +7,7 @@ brackets above beats when the beats of a time signature are grouped.  "
 
 }
 
-\version "2.15.18"
+\version "2.15.19"
 
 \layout  {
   ragged-right = ##t
@@ -20,13 +20,13 @@ brackets above beats when the beats of a time signature are grouped.  "
   }
 
 \relative c' {
-  $(set-time-signature 2 4) 
+  \time 2/4 
   c8 a'4 a8~
-  $(set-time-signature 5 8 '(3 2)) 
+  \time #'(3 2) 5/8 
   a8 bes4 r8 bes8->
   \time 2/4
   c,8 g'4 g8~
-  $(set-time-signature 5 8 '(3 2)) 
+  \time #'(3 2) 5/8 
   g8 a4 g a4.->
 }