lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: two bugs (?)


From: Mats Bengtsson
Subject: Re: two bugs (?)
Date: Fri, 12 Jul 2002 11:08:42 +0200

> On Wed, 2002-07-10 at 11:02, Mats Bengtsson wrote:
> > > <<<
> > > warning: couldn't find any font satisfying 
> > > (#f italic medium roman -1)
> > > 
> > > >>>
> > 
> > Hmm, thish should be fixed in scm/font.scm
> 
> i just investigated this. the corresponding entries in scm/font.scm are:
>
>  ...
>     ((-3 medium italic roman 7) . "cmti7")
>
> looks like lilypond is generating the scm property the wrong way round?
> ("italic medium" rather than "medium italic")? which would now be the
> better hack for me? change the entries in font.scm or wait for the next
> lily-update (or has this already been fixed -- i'm using 1.5.65)?

No, no! The order is correct (maybe you could say it's wrong in the
error printout). What was missing was just a few more entries.
The attached patch fixes the problem.

  /Mats

Generated by (address unknown),
>From = lilypond-1.5.66.mb2, To = lilypond-1.5.66.mb3

usage 

    cd lilypond-source-dir; patch -E -p1 < lilypond-1.5.66.mb2-1.5.66.mb3.diff

Patches do not contain automatically generated files 
or (urg) empty directories, 
i.e., you should rerun autoconf, configure

diff -purN ../lilypond-1.5.66.mb2/ChangeLog ./ChangeLog
--- ../lilypond-1.5.66.mb2/ChangeLog    Fri Jul 12 08:14:11 2002
+++ ./ChangeLog Fri Jul 12 11:01:53 2002
@@ -1,5 +1,8 @@
 2002-07-12  Mats Bengtsson  <address@hidden>
 
+       * scm/font.scm: Add more font entries for small sizes, fixes bug
+       with tuplets with paper11.
+
        * lily/beam.cc (after_line_breaking): Set correct stem lengths
        also when beam positions are set manually.
        (consider_auto_knees): Don't use automatic knees if the directions
diff -purN ../lilypond-1.5.66.mb2/VERSION ./VERSION
--- ../lilypond-1.5.66.mb2/VERSION      Fri Jul 12 07:33:48 2002
+++ ./VERSION   Fri Jul 12 11:00:49 2002
@@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond
 MAJOR_VERSION=1
 MINOR_VERSION=5
 PATCH_LEVEL=66
-MY_PATCH_LEVEL=mb2
+MY_PATCH_LEVEL=mb3
 
 # Use the above to send patches: MY_PATCH_LEVEL is always empty for a
 # released version.
diff -purN ../lilypond-1.5.66.mb2/scm/font.scm ./scm/font.scm
--- ../lilypond-1.5.66.mb2/scm/font.scm Tue Jul  2 20:38:48 2002
+++ ./scm/font.scm      Fri Jul 12 11:00:35 2002
@@ -88,7 +88,9 @@
     ((0 medium italic roman 10) . "cmti12")
     ((-1 medium italic roman 8) . "cmti10")    
     ((-2 medium italic roman 7) . "cmti8")
-    ((-3 medium italic roman 7) . "cmti7")    
+    ((-3 medium italic roman 6) . "cmti6")    
+    ((-4 medium italic roman 5) . "cmti5")    
+    ((-5 medium italic roman 5) . "cmti5")    
 
     ;;; cmbx17 is sauter, not commonly available as Type1.
     ((4 bold upright roman 17) . "cmr17") 
@@ -99,6 +101,9 @@
     ((0 bold upright roman 10) . "cmbx10")
     ((-1 bold upright roman 8) . "cmbx8")
     ((-2 bold upright roman 7) . "cmbx7")
+    ((-3 bold upright roman 6) . "cmbx6")
+    ((-4 bold upright roman 5) . "cmbx5")
+    ((-5 bold upright roman 5) . "cmbx5")
     
     ((2 bold italic roman 12) . "cmbxti12")
     ((1 bold italic roman 12) . "cmbxti12")
@@ -106,6 +111,9 @@
 
     ((-1 bold italic roman 8) . "cmbxti8")
     ((-2 bold italic roman 7) . "cmbxti7")
+    ((-3 bold italic roman 6) . "cmbxti6")
+    ((-4 bold italic roman 5) . "cmbxti5")
+    ((-5 bold italic roman 5) . "cmbxti5")
     
     ((4 medium upright typewriter 17) . "cmtt17")
     ((3 medium upright typewriter 17) . "cmtt17")

reply via email to

[Prev in Thread] Current Thread [Next in Thread]