From: fred Date: Wed, 27 Mar 2002 02:03:19 +0000 (+0000) Subject: lilypond-1.5.15 X-Git-Tag: release/1.5.59~447 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3cc74ec584cf865c7ca1c3b02046b51860723075;p=lilypond.git lilypond-1.5.15 --- diff --git a/input/test/blank.ly b/input/test/blank.ly new file mode 100644 index 0000000000..b13f630e51 --- /dev/null +++ b/input/test/blank.ly @@ -0,0 +1,19 @@ +\header { + texidoc="Blank music paper with clefs" +} +\score { + \notes { + % \clef violin + \clef bass + \repeat unfold 9 { c1 \break } + } + \paper { + \translator { + \ScoreContext + TimeSignature \override #'transparent = ##t + NoteHead \override #'transparent = ##t + defaultBarType = #"" + \remove Bar_number_engraver + } + } +} diff --git a/lily/figured-bass-engraver.cc b/lily/figured-bass-engraver.cc index dc30cf3e2c..de933b472d 100644 --- a/lily/figured-bass-engraver.cc +++ b/lily/figured-bass-engraver.cc @@ -60,7 +60,7 @@ Figured_bass_engraver::process_music () { figure_ = new Item (get_property ("BassFigure")); announce_grob (figure_, rest_req_); // todo - figure_->set_grob_property ("text" , gh_str02scm ("-")); + figure_->set_grob_property ("text" , ly_str02scm ("-")); } else if (figures_.size ()) { diff --git a/lily/input-smob.cc b/lily/input-smob.cc index bd7061a3d0..75d00c25f1 100644 --- a/lily/input-smob.cc +++ b/lily/input-smob.cc @@ -41,8 +41,8 @@ ly_input_p (SCM x) return unsmob_input (x) ? SCM_BOOL_T : SCM_BOOL_F ; } -static -void start_input_smobs () +static void +start_input_smobs () { input_tag = scm_make_smob_type ("input", 0); scm_set_smob_mark (input_tag, mark_smob); @@ -52,7 +52,7 @@ void start_input_smobs () scm_c_define_gsubr ("ly-input-location?", 1, 0, 0, (Scheme_function_unknown)ly_input_p); - } +} SCM make_input (Input ip)