]> git.donarmstrong.com Git - lilypond.git/commitdiff
(music-descriptions): no length for tempo event.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 14 Nov 2002 22:28:27 +0000 (22:28 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 14 Nov 2002 22:28:27 +0000 (22:28 +0000)
ChangeLog
buildscripts/new-chords.py
input/test/clef-end-of-line.ly
input/test/figured-bass.ly
input/test/gmsusd.ly
input/test/orchestscore.ly
input/test/part-combine-score.ly
scm/music-types.scm

index 90af76cc3c319bf7284f39db3cfaa1681c39b20a..cfea65b36d459324490a56e4870aba246a0b6364 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-11-14  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * scm/music-types.scm (music-descriptions): no length for tempo event.
+
        * input/*.ly: add \version everywhere.
        
        * input/*.ly: update syntax to 1.7 + new-chords.
index 86456cbd90df441b9a6e1535ce5e67ee9cbfcb69..537f28bc8b84e7e3ebf96e7065ec3f47a4b83042 100644 (file)
@@ -10,11 +10,15 @@ import os
 def sub_chord (m):
        str = m.group(1)
 
+       origstr =  '<%s>' % str
        if re.search (r'\\\\', str):
-               return '<%s>' % str
+               return origstr
+
+       if re.search (r'\\property', str):
+               return origstr
 
        if re.match (r'^\s*\)?\s*\\[a-zA-Z]+', str):
-               return '<%s>' % str
+               return origstr
 
        durs = []
        def sub_durs (m):
index 79c0966245da9f5c7e4cc8cef90ce725576aa376..a2a95b6fb721c74cf32f9caad82807d4fb0ea070 100644 (file)
@@ -6,7 +6,7 @@
 }
 
 \score {
-    \notes \transpose c'' {
+    \notes \transpose c c' {
        \property Staff.Clef \set #'break-visibility = #end-of-line-visible
        \property Staff.KeySignature \set #'break-visibility = #end-of-line-visible
        \property Staff.explicitClefVisibility = #end-of-line-visible
index a8180f44ec5b6455f06994552aa5419da5a34232..f80bd43a9d0fb5be156b16b6785278a5b0c7b79e 100644 (file)
@@ -15,7 +15,7 @@ mode, which allows you to type numbers, like @code{<<4 6+>>}.
    <<f ais >>8
    \figures {
      r8
-     <<1 3 5>>4 <<3- 5+ 6!>> <<5>>
+     <1 3 5>4 <3- 5+ 6!> <5>
    } 
  }
  \context Voice {
index 2a982965b7de7c796358d7f9a7cd5da440da0aac..44f7d0ed6f1439d477bfa018c61051c88ee2cef8 100644 (file)
@@ -12,7 +12,7 @@ gmsus=\notes\relative c \chords{
        g1:3-.4.7
 
        % another hard way:
-       \notes<< g' bes c d f >>1
+       \notes { << g' bes c d f >>1 }
 
        % bit easier:
        g1:m.4.7
index ea29ada988b76523efccb5e31d6a4aebe6cebc8c..470dcf5166ce7b5b0e14a83a2fab523356b0a530 100644 (file)
@@ -83,12 +83,12 @@ c1 | c2 c | c c | R1*5
       \property Staff.instr = "Vla."
       \m
     >
-    \context Staff = vlc <<
-      %% \property Staffinstrument = "Violoncello"
-      \property Staffinstrument = #'(lines "Violoncello" "e" "Contrabasso")
-      \property Staffinstr = "Vlc"
+    \context Staff = vlc <
+      %% \property Staff.instrument = "Violoncello"
+      \property Staff.instrument = #'(lines "Violoncello" "e" "Contrabasso")
+      \property Staff.instr = "Vlc"
       \m
-    >>.
+    >
     \context Staff = cb <
       \property Staff.instrument = "Contrabasso"
       \property Staff.instr = "C.B."
index d4ce70fdcada87c4e06b256a69449938f91cb4c0..97582627af79300addb097916910ebcd8e7aac6c 100644 (file)
@@ -96,15 +96,15 @@ violinoIStaff =  \context Staff = oneViolini <
   \End
 >
 
-violinoIIStaff =  \context Staff = twoViolini <<
+violinoIIStaff =  \context Staff = twoViolini <
   % MIDI hoort geeneens verschil tussen een
   % eerste en tweede viool -)
-  \property StaffmidiInstrument = #"violin"
-  \property Staffinstrument = #"Violino II"
-  \property Staffinstr = #"Vl II"
+  \property Staff.midiInstrument = #"violin"
+  \property Staff.instrument = #"Violino II"
+  \property Staff.instr = #"Vl II"
   \violinoII
   \End
->>.
+>
 
 violaI = \notes\transpose c' c, \violinoI
 
index 6b68a6226cacb253e50f0725d60974feb0538020..a0115817aebcacbdaf9ece09a535df7d9c26e824 100644 (file)
@@ -455,7 +455,7 @@ c8-[ c c-] c8")
     (TempoEvent
      . (
        (description .  "")
-
+       (length . #f)
        (internal-class-name . "Event")
        (types . (general-music tempo-event event))
        ))