summaryrefslogtreecommitdiff
path: root/pango/pango-utils.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <pango@behdad.org>2005-07-23 19:24:48 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2005-07-23 19:24:48 +0000
commitd5142f02455703ea61bd11f308ef844e9b20ebbd (patch)
treeeee87660e4825754892fd64e65499bfc138aa78b /pango/pango-utils.h
parent1470d761b0faf8de46ff38163272a9a6af6c5e64 (diff)
downloadpango-d5142f02455703ea61bd11f308ef844e9b20ebbd.tar.gz
New function added.
2005-07-23 Behdad Esfahbod <pango@behdad.org> * pango/pango-utils.c, pango/pango-utils.h (pango_is_zerowidth): New function added. * modules/basic/basic-common.h, modules/basic/basic-fc.c, modules/basic/basic-win32.c, modules/basic/basic-x.c, modules/hangul/hangul-fc.c, modules/arabic/arabic-fc.c, modules/indic/indic-fc.c, modules/indic/indic-ot.h, modules/syriac/syriac-fc.c: Use the new pango_is_zerowidth function. (#306639, Behnam Esfahbod)
Diffstat (limited to 'pango/pango-utils.h')
-rw-r--r--pango/pango-utils.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/pango/pango-utils.h b/pango/pango-utils.h
index 20b828e4..4db1a23b 100644
--- a/pango/pango-utils.h
+++ b/pango/pango-utils.h
@@ -86,8 +86,7 @@ G_CONST_RETURN char * pango_get_lib_subdirectory (void);
#endif /* PANGO_ENABLE_BACKEND */
-/* A couple of routines from fribidi that we either wrap or
- * provide ourselves.
+/* A routine from fribidi that we either wrap or provide ourselves.
*/
gboolean pango_log2vis_get_embedding_levels (gunichar *str,
int len,
@@ -96,6 +95,11 @@ gboolean pango_log2vis_get_embedding_levels (gunichar *str,
G_CONST_RETURN char *pango_language_get_sample_string (PangoLanguage *language);
+/* Unicode characters that are zero-width and should not be rendered
+ * normally.
+ */
+G_GNUC_CONST gboolean pango_is_zero_width (gunichar ch);
+
G_END_DECLS
#endif /* __PANGO_UTILS_H__ */