From 86b40894d6cd9566790fd3c88dbb0c4cb735aef4 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Mon, 21 Aug 2006 23:16:50 +0000 Subject: [PATCH] (allfiles): look for .ly rather than .ly.txt. --- ChangeLog | 3 +++ buildscripts/mutopia-index.py | 2 +- lily/stencil.cc | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) 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]; -- 2.39.2