]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.5.15
authorfred <fred>
Wed, 27 Mar 2002 02:03:19 +0000 (02:03 +0000)
committerfred <fred>
Wed, 27 Mar 2002 02:03:19 +0000 (02:03 +0000)
input/test/blank.ly [new file with mode: 0644]
lily/figured-bass-engraver.cc
lily/input-smob.cc

diff --git a/input/test/blank.ly b/input/test/blank.ly
new file mode 100644 (file)
index 0000000..b13f630
--- /dev/null
@@ -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
+    }
+  }
+}
index dc30cf3e2c75c04b6fe31e156782e97986c93c95..de933b472dd8dcc95b938c2f315b727f15c796df 100644 (file)
@@ -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 ())
     {
index bd7061a3d08405ad0c43e5988ad77a1eaaa204ee..75d00c25f19ac02ccc9ccc6798ad95b2c2c17cd7 100644 (file)
@@ -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)