From 513fe9ef3a5994fea9dbf7b6ad6e8808f046dabc Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 27 Nov 2010 15:06:57 +0200 Subject: [PATCH] * mu-str.h: add note about unicode blocks supported for mu_str_normalize ('Latin-1 Supplement' and 'Latin Extended-A') --- src/mu-str.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/mu-str.h b/src/mu-str.h index e1a0c32f..c8e3dc42 100644 --- a/src/mu-str.h +++ b/src/mu-str.h @@ -134,9 +134,9 @@ char* mu_str_summarize (const char* str, /** * normalize a string (ie., collapse accented characters etc.), and - * optionally, downcase it + * optionally, downcase it. Works for accented chars in Unicode Blocks + * 'Latin-1 Supplement' and 'Latin Extended-A' * - * * @param str a valid utf8 string or NULL * @param downcase if TRUE, convert the string to lowercase * @@ -148,7 +148,8 @@ char* mu_str_normalize (const char *str, gboolean downcase); /** * normalize a string (ie., collapse accented characters etc.), and * optionally, downcase it. this happen by changing the string; if - * that is not desired, use mu_str_normalize + * that is not desired, use mu_str_normalize. Works for accented chars + * in Unicode Blocks 'Latin-1 Supplement' and 'Latin Extended-A' * * @param str a valid utf8 string or NULL * @param downcase if TRUE, convert the string to lowercase