diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-09-13 18:56:21 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-09-13 18:56:21 +0000 |
commit | d7619fd81586585e1938b56d97a4f4c4505fc306 (patch) | |
tree | 2616782a2f44d99e8c64b2ac2b416212dde52f3b /pango/shape.c | |
parent | 7bf3c35e7b3070d8c9fc37dcca9097c0b9e597d6 (diff) | |
download | pango-d7619fd81586585e1938b56d97a4f4c4505fc306.tar.gz |
Remove unnecessary 'static' in type definition that causes a relocation.
2006-09-13 Behdad Esfahbod <behdad@gnome.org>
* pango/pango-engine.h: Remove unnecessary 'static' in type definition
that causes a relocation.
* pango/shape.c (pango_shape): Make sure last_cluster is invalid.
Diffstat (limited to 'pango/shape.c')
-rw-r--r-- | pango/shape.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pango/shape.c b/pango/shape.c index 96abd21b..fc165fbe 100644 --- a/pango/shape.c +++ b/pango/shape.c @@ -44,7 +44,7 @@ pango_shape (const gchar *text, PangoGlyphString *glyphs) { int i; - int last_cluster = -1; + int last_cluster; if (G_LIKELY (PANGO_IS_ENGINE_SHAPE (analysis->shape_engine) && PANGO_IS_FONT (analysis->font))) { @@ -109,6 +109,8 @@ pango_shape (const gchar *text, text, length, analysis, glyphs); } + /* make sure last_cluster is invalid */ + last_cluster = glyphs->log_clusters[0] - 1; for (i = 0; i < glyphs->num_glyphs; i++) { /* Set glyphs[i].attr.is_cluster_start based on log_clusters[] |