]> git.donarmstrong.com Git - lilypond.git/commitdiff
tags
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 26 Jul 2002 12:30:09 +0000 (12:30 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 26 Jul 2002 12:30:09 +0000 (12:30 +0000)
ChangeLog
Documentation/header.html.in
Documentation/topdocs/INSTALL.texi
lily/GNUmakefile
lily/grob-scheme.cc

index aa458bc0fc70da590abf6c41e18725a4933854ae..ad257c8e5060bf8d9c054232f9674cd1b9e39a1d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
        * lily/staff-spacing.cc (next_note_correction): idem
 
-       * lily/separating-group-spanner.cc (find_rods): use conditional_width().
-
+       * lily/separating-group-spanner.cc (find_rods): use
+       conditional_width().
+       
        * scm/sketch.scm: fix roundfilledbox definition
 
        * lily/lily-guile.cc (robust_list_ref): be sensible with negative
index 199e2cd117a1a9299d461387cdb6570b690406c0..5691705ad43290e72654cd0f7ab6440d07e7c0b2 100644 (file)
@@ -77,6 +77,7 @@ which substitutes some @AT_VARIABLES@ as well.
       <tr><td><font size="-1">
         <a href="http://www.lilypond.org/development">lilypond.org/development</a><br>
         <a href="http://www.lilypond.org/stable">lilypond.org/stable</a><br>
+        <a href="http://savannah.gnu.org/projects/lilypond/">savannah.gnu.org</a><br>
         <a href="ftp://ftp.lilypond.org/pub">ftp.lilypond.org</a><br>
         <a href="http://www.mutopiaproject.org/">Mutopia</a><br>
        <a href="http://www.lilypond.org/wiki?DownloadLilyPondScores">Other music online</a><br>
index a0f923d636ed1876be993585bf2128e5fdd95c3b..b206058a6b899840b44779ed3507ca1ce0f013e1 100644 (file)
@@ -49,26 +49,18 @@ If you want to compile LilyPond from source, download here:
 @end itemize
 
 
-Of course, if your platform supports LilyPond, such as Debian GNU/Linux,
-FreeBSD, OpenBSD or NetBSD, you're encouraged to use the native build
-from source drill.
-
 For Red Hat Linux and SuSE Linux, @file{.spec} files are included in the
 tarball; see instructions below.
 
 
-@subsubsection Anonymous CVS access
 
-Short version:
+Of course, if your platform supports LilyPond, such as Debian GNU/Linux,
+FreeBSD, OpenBSD or NetBSD, you're encouraged to use the native build
+from source drill.
 
-@quotation
-@example
-cvs -d :pserver:anoncvs@@lilypond.org:/home/lilypond login
-cvs -d :pserver:anoncvs@@lilypond.org:/home/lilypond co -P lilypond
-@end example
-@end quotation
+The latest development version is also available through anonymous
+CVS. See @uref{http://savannah.gnu.org/cvs/?group=lilypond}.
 
-See @uref{http://lilypond.org/wiki/?CVS} for more information.
 
 @html
 <a name="download-binaries">
index edc0c0ae6e3a10ad6a37a88c8acd08f43da5f750..ed402017d48562fbc82772af64a60df33376241b 100644 (file)
@@ -8,11 +8,12 @@ MODULE_LIBS=$(depth)/flower
 MODULE_INCLUDES= $(depth)/flower/include
 MODULE_CXXFLAGS=
 HELP2MAN_EXECS = lilypond
-
 STEPMAKE_TEMPLATES= c++ executable po help2man
 
 include $(depth)/make/stepmake.make 
 
+ETAGS_FLAGS += -r '/^LY_DEFINE *(\([^,]+\),/\1/'  -r '/^LY_DEFINE *([^,]+, *"\([^"]+\)"/\1/' 
+
 default: 
 
 # force these: Make can't know these have to be generated in advance
index 3242db1603645dcecf4709a58b938a425e6d7ce6..443938e7631594d141b41d1183e1f3abd0bd79f2 100644 (file)
@@ -3,6 +3,7 @@
 #include "spanner.hh"
 #include "item.hh"
 #include "paper-def.hh"
+#include "system.hh"
 
 LY_DEFINE(ly_set_grob_property,"ly-set-grob-property!", 3, 0, 0,
   (SCM grob, SCM sym, SCM val),
@@ -114,7 +115,7 @@ Return the System Grob of @var{grob}.
   Grob *me = unsmob_grob (grob);
   SCM_ASSERT_TYPE (me, grob, SCM_ARG1, __FUNCTION__, "grob");
   
-  if (Grob *g = me->get_system ())
+  if (System *g = me->get_system ())
     return g->self_scm ();
     
   return SCM_EOL;