diff options
Diffstat (limited to 'mail/em-composer-utils.c')
-rw-r--r-- | mail/em-composer-utils.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c index fa517f8dd5..8ae537ad7c 100644 --- a/mail/em-composer-utils.c +++ b/mail/em-composer-utils.c @@ -823,8 +823,7 @@ edit_message (CamelMimeMessage *message, CamelFolder *drafts, const char *uid) CamelMimePart *part; int count1 = 0, string_changed = 0; - char *str, *convert_str = NULL; - gsize bytes_read, bytes_written; + char *str; gint count = 2; content = camel_medium_get_content_object ((CamelMedium *) message); @@ -865,7 +864,7 @@ edit_message (CamelMimeMessage *message, CamelFolder *drafts, const char *uid) gconf = gconf_client_get_default (); - while (*end && !isspace (*end) && (*end != '"')) + while (*end && !g_unichar_isspace (*end) && (*end != '"')) end++; out = g_strndup ((const gchar *) cur, end - cur); |