diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-06-21 16:13:42 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-06-21 16:13:42 +0000 |
commit | 0e6409a158d9dd76a31b9eccf7c4f26c5466d082 (patch) | |
tree | dc120946f7efa23c6c91c64aee2686d2637e3970 /pango/mapping.c | |
parent | 197a2a68c145d3568cd4f0f2fee3d3b55570134f (diff) | |
download | pango-0e6409a158d9dd76a31b9eccf7c4f26c5466d082.tar.gz |
Remove tests for libunicode
Wed Jun 21 12:11:56 2000 Owen Taylor <otaylor@redhat.com>
* configure.in: Remove tests for libunicode
* pango/utils.[ch]: Removed. The functions from here are now in
GLib.
* **.[ch]: Removed use of libunicode and utils.c in favor of
Unicode functions in GLib. Requires latest GLib from CVS.
Diffstat (limited to 'pango/mapping.c')
-rw-r--r-- | pango/mapping.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pango/mapping.c b/pango/mapping.c index 57a438d9..251cda64 100644 --- a/pango/mapping.c +++ b/pango/mapping.c @@ -29,7 +29,6 @@ */ #include <pango/pango.h> -#include <unicode.h> /** * pango_glyph_string_index_to_x: @@ -143,7 +142,7 @@ pango_glyph_string_index_to_x (PangoGlyphString *glyphs, if (p < text + index) cluster_offset++; cluster_chars++; - p = unicode_next_utf8 (p); + p = g_utf8_next_char (p); } /* Now interpolate the result. For South Asian languages @@ -265,7 +264,7 @@ pango_glyph_string_x_to_index (PangoGlyphString *glyphs, p = text + start_index; while (p < text + end_index) { - p = unicode_next_utf8 (p); + p = g_utf8_next_char (p); cluster_chars++; } @@ -287,7 +286,7 @@ pango_glyph_string_x_to_index (PangoGlyphString *glyphs, while (i + 1 <= cp) { - p = unicode_next_utf8 (p); + p = g_utf8_next_char (p); i++; } |