# HG changeset patch # User Mark Doliner # Date 1176663031 0 # Node ID a740afef2dafea06d73f3418cefb2a731e684055 # Parent c0dc6225a1d7b5a88fbd73cc21124e9908bba0d5 Slightly more descriptive diff -r c0dc6225a1d7 -r a740afef2daf libpurple/util.h --- a/libpurple/util.h Sun Apr 15 18:42:50 2007 +0000 +++ b/libpurple/util.h Sun Apr 15 18:50:31 2007 +0000 @@ -1017,7 +1017,10 @@ gchar *purple_utf8_salvage(const char *str); /** - * Compares two UTF-8 strings case-insensitively. + * Compares two UTF-8 strings case-insensitively. This string is + * more expensive than a simple g_utf8_collate() comparison because + * it calls g_utf8_casefold() on each string, which allocates new + * strings. * * @param a The first string. * @param b The second string.