From: fred Date: Wed, 27 Mar 2002 00:34:28 +0000 (+0000) Subject: lilypond-1.3.116 X-Git-Tag: release/1.5.59~1047 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a16933fb5f029450750f828abc8f07b067126868;p=lilypond.git lilypond-1.3.116 --- diff --git a/scm/basic-properties.scm b/scm/basic-properties.scm index 4239bc7f41..3910b82dfd 100644 --- a/scm/basic-properties.scm +++ b/scm/basic-properties.scm @@ -85,6 +85,7 @@ ((Key_item begin-of-note) . (extra-space 2.5)) ((Staff_bar begin-of-note) . (extra-space 1.0)) ((Clef_item begin-of-note) . (minimum-space 5.0)) + ((Left_edge_item Breathing_sign) . (minimum-space 0.0)) ((none Breathing_sign) . (minimum-space 0.0)) ((Breathing_sign Key_item) . (minimum-space 1.5)) ((Breathing_sign begin-of-note) . (minimum-space 1.0)) diff --git a/scripts/abc2ly.py b/scripts/abc2ly.py index 8cab59b86a..79d241faa0 100644 --- a/scripts/abc2ly.py +++ b/scripts/abc2ly.py @@ -537,12 +537,12 @@ def try_parse_header_line (ln, state): if a == 'C': if not state.common_time: state.common_time = 1 - voices_append ("\\property Staff.TimeSignature \push #\'style = #\"C\"\n") + voices_append ("\\property Staff.TimeSignature \\override #\'style = #'C\n") a = '4/4' if a == 'C|': if not state.common_time: state.common_time = 1 - voices_append ("\\property Staff.TimeSignature \push #\'style = #\"C\"\n") + voices_append ("\\property Staff.TimeSignature \\override #\'style = #'C\n") a = '2/2' if not length_specified: set_default_len_from_time_sig (a)