diff options
-rw-r--r-- | hildon/hildon-helper.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hildon/hildon-helper.c b/hildon/hildon-helper.c index 4fb1033..6431e02 100644 --- a/hildon/hildon-helper.c +++ b/hildon/hildon-helper.c @@ -602,13 +602,11 @@ e_util_unicode_get_utf8 (const gchar *text, gunichar *out) static const gchar * get_next (const gchar *p, gunichar *out, gboolean separators) { - const gchar *q; gunichar utf8; if (separators) { do { - q = p; - p = e_util_unicode_get_utf8 (q, &utf8); + p = e_util_unicode_get_utf8 (p, &utf8); *out = stripped_char (utf8); } while (p && utf8 && !g_unichar_isalnum (*out)); } else { |