From: Han-Wen Nienhuys Date: Thu, 19 Sep 2002 21:30:12 +0000 (+0000) Subject: (Top): version for python, X-Git-Tag: release/1.6.4~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=517b758872a070e8e93b055f81a62733f15057d5;p=lilypond.git (Top): version for python, urls for ghostscript (thanks to John Potelle) --- diff --git a/ChangeLog b/ChangeLog index eb3259ae6c..e631ace1b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2002-09-19 Han-Wen Nienhuys + * Documentation/windows/installing.texi (Top): version for python, + urls for ghostscript (thanks to John Potelle) + * lily/simultaneous-music-iterator.cc (Simultaneous_music_iterator): init children_list_ before triggering GC. diff --git a/Documentation/windows/installing.texi b/Documentation/windows/installing.texi index 43088e2c3e..0a751d8990 100644 --- a/Documentation/windows/installing.texi +++ b/Documentation/windows/installing.texi @@ -63,7 +63,9 @@ You can use GSView-2.6. This old package has two advantages. It has gsview and ghostscript bundeled, and it doesn't popup @emph{Register Now|Cancel} windows all the time. -Install @uref{ftp://ftp.cs.wisc.edu/ghost/ghostgum/gsv26w32.exe, GSView-2.6} (GhostView for Windows), or visit +Install +@uref{ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/aladdin/gs550/gsv27550.exe,GSView-2.7} +(GhostView for Windows), or visit @uref{ftp://ftp.cs.wisc.edu/ghost/ghostgum,ftp.cs.wisc.edu}. @c check/update versions @@ -403,7 +405,7 @@ following commands: @item Version info @quotation @example - python --version + python -V lilypond --version ly2dvi --version @end example diff --git a/lily/grob.cc b/lily/grob.cc index d4f2e27bb0..4124e7ffc3 100644 --- a/lily/grob.cc +++ b/lily/grob.cc @@ -240,8 +240,11 @@ Grob::get_molecule () const mol = get_uncached_molecule (); - Grob *me = (Grob*)this; - me->set_grob_property ("molecule", mol); + if (live ()) + { + Grob *me = (Grob*)this; + me->set_grob_property ("molecule", mol); + } return unsmob_molecule (mol); }