CVSROOT: /cvsroot/lilypond
Module name: lilypond
Branch:
Changes by: Han-Wen Nienhuys <[EMAIL PROTECTED]> 05/07/09 08:27:54
Modified files:
input/regression: stencil-hacking.ly
lily : figured-bass-engraver.cc
Log message:
release commit
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/input/regression/stencil-hacking.ly.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/lily/figured-bass-engraver.cc.diff?tr1=1.35&tr2=1.36&r1=text&r2=text
Patches:
Index: lilypond/input/regression/stencil-hacking.ly
diff -u lilypond/input/regression/stencil-hacking.ly:1.2
lilypond/input/regression/stencil-hacking.ly:1.3
--- lilypond/input/regression/stencil-hacking.ly:1.2 Sun Jun 26 22:39:14 2005
+++ lilypond/input/regression/stencil-hacking.ly Sat Jul 9 08:27:53 2005
@@ -1,5 +1,5 @@
-\version "2.6.0"
+\version "2.7.0"
\header { texidoc=" You can write stencil callbacks in Scheme, thus
providing custom glyphs for notation elements. A simple example is
@@ -28,7 +28,7 @@
GROB. The dimensions of the stencil is not affected.
"
- (let* ((fn (ly:get-default-font grob))
+ (let* ((fn (ly:grob-default-font grob))
(pclose (ly:font-get-glyph fn "accidentals.rightparen"))
(popen (ly:font-get-glyph fn "accidentals.leftparen"))
(subject (callback grob))
Index: lilypond/lily/figured-bass-engraver.cc
diff -u lilypond/lily/figured-bass-engraver.cc:1.35
lilypond/lily/figured-bass-engraver.cc:1.36
--- lilypond/lily/figured-bass-engraver.cc:1.35 Tue Jun 7 15:13:06 2005
+++ lilypond/lily/figured-bass-engraver.cc Sat Jul 9 08:27:54 2005
@@ -16,7 +16,7 @@
TRANSLATOR_DECLARATIONS (Figured_bass_engraver);
protected:
Link_array<Music> figures_;
- Music *rest_req_;
+ Music *rest_event_;
Grob *figure_;
@@ -28,7 +28,7 @@
Figured_bass_engraver::Figured_bass_engraver ()
{
figure_ = 0;
- rest_req_ = 0;
+ rest_event_ = 0;
}
void
@@ -37,7 +37,7 @@
figure_ = 0;
figures_.clear ();
- rest_req_ = 0;
+ rest_event_ = 0;
}
bool
@@ -50,7 +50,7 @@
}
else if (m->is_mus_type ("rest-event"))
{
- rest_req_ = m;
+ rest_event_ = m;
return true;
}
return false;
@@ -59,9 +59,9 @@
void
Figured_bass_engraver::process_music ()
{
- if (rest_req_)
+ if (rest_event_)
{
- figure_ = make_item ("BassFigure", rest_req_->self_scm ());
+ figure_ = make_item ("BassFigure", rest_event_->self_scm ());
figure_->set_property ("text", scm_makfrom0str ("-"));
}
else if (figures_.size ())
_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs