]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorJan Nieuwenhuizen <janneke@gnu.org>
Thu, 9 Sep 2004 00:26:03 +0000 (00:26 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Thu, 9 Sep 2004 00:26:03 +0000 (00:26 +0000)
ChangeLog
lily/pangofc-afm-decoder.cc

index 48a4029013daf5d364bf6b0d98c09d6ee2efa653..dd0bfa26d47cd6d93dc039a60680f9093d7b4160 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,9 @@
 
 2004-09-09  Jan Nieuwenhuizen  <janneke@gnu.org>
 
+       * lily/pangofc-afm-decoder.cc (pango_fc_afm_get_glyph): Increment
+       character position.  Huh?
+
        * scm/output-gnome.scm (placebox): Shield affine-relative.
 
        * buildscripts/guile-gnome.sh: Update.  Do not use GUILE CVS,
index 4f569d29391b04b1225740cab032aaf49b514b68..5d0fca87a96f2f02e7eef06dd6612940ea16c724 100644 (file)
@@ -176,13 +176,16 @@ pango_fc_afm_get_glyph (PangoFcDecoder *decoder, PangoFcFont *fcfont,
   PangoGlyph g = XftCharIndex (0, xft_font, wc);
   dprintf ("get glyph! 0x%x --> 0x%x\n", wc, (unsigned)g);
 #else
+  (void) fcfont;
   /* TODO:
        - PUA mapping?
        
      Shortcut PUA mapping/AFM reading: The Feta charsets are encoded
-     without any gaps, starting at 0x21.  *grin*  */
-  (void) fcfont;
-  return wc - 0x21;
+     without any gaps, starting at 0x21.  *grin*
+
+     FIXME: +1 what has changed? -- jcn
+  */
+  return wc - 0x21 + 1;
 #endif  
 }