diff options
author | Owen Taylor <otaylor@redhat.com> | 2004-08-10 16:01:46 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2004-08-10 16:01:46 +0000 |
commit | f978372136fc20679761bc86eff186edbca8ee42 (patch) | |
tree | 7e51fbd012914249b5da3ac336db74f7f930bf6d /modules/arabic | |
parent | 285abaf4388ff793e1daf5d2084c69a83a9d82eb (diff) | |
download | pango-f978372136fc20679761bc86eff186edbca8ee42.tar.gz |
Fix bug where cluster was getting set to 0 for non-spacing marks rather
Tue Aug 10 11:51:10 2004 Owen Taylor <otaylor@redhat.com>
* modules/arabic/arabic-fc.c (arabic_engine_shape): Fix
bug where cluster was getting set to 0 for non-spacing
marks rather than to the cluster of the base character.
(#149126, Behdad Esfahbod)
Diffstat (limited to 'modules/arabic')
-rw-r--r-- | modules/arabic/arabic-fc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arabic/arabic-fc.c b/modules/arabic/arabic-fc.c index e037a609..04ea2418 100644 --- a/modules/arabic/arabic-fc.c +++ b/modules/arabic/arabic-fc.c @@ -257,6 +257,7 @@ arabic_engine_shape (PangoEngineShape *engine, PangoOTRuleset *ruleset; PangoOTBuffer *buffer; PangoFcFont *fc_font; + int cluster = 0; g_return_if_fail (font != NULL); g_return_if_fail (text != NULL); @@ -292,7 +293,6 @@ arabic_engine_shape (PangoEngineShape *engine, PangoGlyph index; char buf[6]; const char *input; - int cluster = 0; wc = g_utf8_get_char (p); |