]> git.donarmstrong.com Git - lilypond.git/commitdiff
* scripts/lilypond-book.py (ly_options): set timing to #f for
authorhanwen <hanwen>
Sun, 1 May 2005 20:08:25 +0000 (20:08 +0000)
committerhanwen <hanwen>
Sun, 1 May 2005 20:08:25 +0000 (20:08 +0000)
notime option.

* scripts/convert-ly.py (conv): typo.

ChangeLog
THANKS
scripts/convert-ly.py
scripts/lilypond-book.py

index 00ad577359ed0c46e0b9f042074455b65258db6a..092d706bf818cd3d025368feb1efb3413eac4e2d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,17 @@
 2005-05-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * scripts/lilypond-book.py (ly_options): set timing to #f for
+       notime option.
+
+       * scripts/convert-ly.py (conv): typo.
+
        * flower/*.cc: remove <? and >?
        
        * lily/*.cc: remove <? and >?
 
-       * lily/tweak-registration.cc (insert_tweak_from_file): dubious
-       bugfix. Make sure that 0x0 isn't passed into scm_cons(). Fixes
-       crash with tweak editor.
+       * lily/tweak-registration.cc (insert_tweak_from_file): Make sure
+       that 0x0 isn't passed into scm_cons(). Fixes crash with tweak
+       editor.
 
 2005-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
@@ -67,7 +72,7 @@
 2005-04-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * python/lilylib.py (make_ps_images): bugfixes; GS can produce
-       empty 2nd page for mono page.
+       empty 2nd page for single page.
 
        * scm/lily.scm: remove p&c definitions.
 
diff --git a/THANKS b/THANKS
index 870d12924cf12e194d2b9a8df222e014b4dd7276..80b9872229fe5359132c1ef9e6defdd00e0a47d5 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -65,6 +65,7 @@ Richard Schoeller
 Roman Stöckl-Schmidt
 Stephen McCarthy
 Tapio Tuovila
+Tom Cato Amundsen
 Will Oram
 Wolfgang Hoffmann
 
index f0977d5e3cd5d3e0b76afc5b7ec80931d7a85624..d1bfe51e884d04b6511dd59fbcbdf2175b210ade 100644 (file)
@@ -2254,7 +2254,7 @@ def conv (str):
        str = re.sub (r'\\applymusic\s*#notes-to-clusters',
                      '\\makeClusters', str)
 
-       str = re.sub (r'pagenumber\s*=', 'firstpagenumber', str)
+       str = re.sub (r'pagenumber\s*=', 'firstpagenumber = ', str)
        return str
 
 conversions.append (((2, 3, 12), conv,
index 49c0a46565ba81e50d2ecbc9cb849287b3f8b880..cd8613a387e7f834d6087408622d7c3cced11dcb 100644 (file)
@@ -418,7 +418,12 @@ ly_options = {
 
        ##
        LAYOUT: {
-               NOTIME: r'''\context {
+               NOTIME: r'''
+  \context {
+    \Score
+    timing = ##f
+  }
+  \context {
     \Staff
     \remove Time_signature_engraver
   }''',