From: hanwen Date: Sun, 1 May 2005 20:08:25 +0000 (+0000) Subject: * scripts/lilypond-book.py (ly_options): set timing to #f for X-Git-Tag: release/2.5.23~47 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=7cdcbab980ef25b8a0bd671952c026fd9d297173;p=lilypond.git * scripts/lilypond-book.py (ly_options): set timing to #f for notime option. * scripts/convert-ly.py (conv): typo. --- diff --git a/ChangeLog b/ChangeLog index 00ad577359..092d706bf8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,17 @@ 2005-05-01 Han-Wen Nienhuys + * scripts/lilypond-book.py (ly_options): set timing to #f for + notime option. + + * scripts/convert-ly.py (conv): typo. + * flower/*.cc: remove ? * lily/*.cc: remove ? - * 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 @@ -67,7 +72,7 @@ 2005-04-27 Han-Wen Nienhuys * 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 870d12924c..80b9872229 100644 --- 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 diff --git a/scripts/convert-ly.py b/scripts/convert-ly.py index f0977d5e3c..d1bfe51e88 100644 --- a/scripts/convert-ly.py +++ b/scripts/convert-ly.py @@ -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, diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 49c0a46565..cd8613a387 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -418,7 +418,12 @@ ly_options = { ## LAYOUT: { - NOTIME: r'''\context { + NOTIME: r''' + \context { + \Score + timing = ##f + } + \context { \Staff \remove Time_signature_engraver }''',