From: hanwen Date: Sun, 7 Apr 2002 10:54:41 +0000 (+0000) Subject: '' X-Git-Tag: release/1.5.59~157 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e628cf688d30774b938ea4c5f40281040dc66b5c;p=lilypond.git '' --- diff --git a/ChangeLog b/ChangeLog index 905faab3aa..57834be19c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,22 @@ +2002-04-06 Mats Bengtsson + + * lily/stem-engraver.cc (acknowledge_grob): Revert to old way of + finding out the duration. Fixes chord tremolo bug. + + * lily/completion-note-heads-engraver.cc (process_music): Set + correct duration for all requests of the broken notes. + + * input/regression/completion-heads.ly: Added example of + Completion_heads_engraver. + + * lilypond-mode.el: Added "2Midi" command + 2002-04-05 Han-Wen + + * patches from Chris Jackson for pedals. + + * mf/cmbase.mf: remove file. -- do without s and z signs for now. 2002-04-04 Han-Wen diff --git a/Documentation/topdocs/INSTALL.texi b/Documentation/topdocs/INSTALL.texi index 67ad977ab9..6349d6ddc8 100644 --- a/Documentation/topdocs/INSTALL.texi +++ b/Documentation/topdocs/INSTALL.texi @@ -126,7 +126,6 @@ Check out @uref{http://www.python.org, the python website}. @item GUILE (version 1.4 or newer). Check out @uref{http://www.gnu.org/software/guile/guile.html,the GUILE webpage}. -Version 1.4 is recommended for better performance. @item GNU Make. Check out diff --git a/VERSION b/VERSION index 266aff3c63..34270fd7a2 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=5 PATCH_LEVEL=50 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=mb1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a diff --git a/lily/completion-note-heads-engraver.cc b/lily/completion-note-heads-engraver.cc index ebfa26a947..ffb9724127 100644 --- a/lily/completion-note-heads-engraver.cc +++ b/lily/completion-note-heads-engraver.cc @@ -184,9 +184,6 @@ Completion_heads_engraver::process_music () Music * m = note_req_l_arr_[i]->clone (); scratch_note_reqs_.push (m); } - - for (int i =0; i < scratch_note_reqs_.size (); i++) - scratch_note_reqs_[i]->set_mus_property ("duration", note_dur.smobbed_copy ()); } @@ -202,7 +199,8 @@ Completion_heads_engraver::process_music () SCM pits = note_req_l_arr_[i]->get_mus_property ("pitch"); req->set_mus_property ("pitch",pits); } - + + req->set_mus_property ("duration", note_dur.smobbed_copy ()); note_p->set_grob_property ("duration-log", gh_int2scm (note_dur.duration_log ())); diff --git a/lilypond-mode.el b/lilypond-mode.el index 76eb43e1d5..592de62018 100644 --- a/lilypond-mode.el +++ b/lilypond-mode.el @@ -169,6 +169,7 @@ in LilyPond-include-path." ("2Dvi" . ("ly2dvi %s" . "View")) ("2PS" . ("ly2dvi -P %s" . "View")) + ("2Midi" . ("lilypond -m %s" . "View")) ("Book" . ("lilypond-book %x" . "LaTeX")) ("LaTeX" . ("latex '\\nonstopmode\\input %l'" . "View"))