]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Top): version for python,
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 19 Sep 2002 21:30:12 +0000 (21:30 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 19 Sep 2002 21:30:12 +0000 (21:30 +0000)
urls for ghostscript (thanks to John Potelle)

ChangeLog
Documentation/windows/installing.texi
lily/grob.cc

index eb3259ae6c86d0348b6f409b0ff61818dc8cd606..e631ace1b8eb482fa3489e1938a052251458473e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-09-19  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * 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.
index 43088e2c3e3697ff09a3360124564cfe0711e3d9..0a751d8990cc66599b0ceadd3e37d739d41abdea 100644 (file)
@@ -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
index d4f2e27bb03213ce77f6875cfca4d55a5fcb3e1a..4124e7ffc370b3475615aaab3d5f2745d8880ac4 100644 (file)
@@ -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);  
 }