From: Han-Wen Nienhuys Date: Mon, 21 Aug 2006 23:16:51 +0000 (+0000) Subject: (allfiles): look for .ly rather X-Git-Tag: cvs/HEAD~145 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8aa5c1a144034f854422f84625e48db4d86ac327;p=lilypond.git (allfiles): look for .ly rather than .ly.txt. --- diff --git a/ChangeLog b/ChangeLog index 1076287bea..fd75a16554 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-08-22 Han-Wen Nienhuys + * buildscripts/mutopia-index.py (allfiles): look for .ly rather + than .ly.txt. + * scm/page.scm (make-page-stencil): don't rely on extents of page-stencil. This fixes spurious space around .EPS files produced with the EPS backend. diff --git a/buildscripts/mutopia-index.py b/buildscripts/mutopia-index.py index 82f5bf007f..4908f0a9d8 100644 --- a/buildscripts/mutopia-index.py +++ b/buildscripts/mutopia-index.py @@ -196,7 +196,7 @@ if not dirs: allfiles = [] for d in dirs: - allfiles = allfiles + find ('*.ly.txt', d) + allfiles = allfiles + find ('*.ly', d) gen_list (allfiles, outfile) diff --git a/lily/stencil.cc b/lily/stencil.cc index dd3bb2626e..294894d5f1 100644 --- a/lily/stencil.cc +++ b/lily/stencil.cc @@ -201,7 +201,6 @@ Stencil::moved_to_edge (Axis a, Direction d, Stencil const &s, { programming_error ("Stencil::moved_to_edge: adding empty stencil."); his_extent = 0.0; - // SCM_ASSERT_TYPE (0, s.expr (), SCM_ARG1, __FUNCTION__, "non-empty stencil"); } else his_extent = i[-d];