diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 1999-11-06 07:06:09 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 1999-11-06 07:06:09 +0800 |
commit | b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5 (patch) | |
tree | 6dc964528b9db296aa1dfedde9a2b2122fd0db8e /camel/gmime-rfc2047.c | |
parent | c8fce201dc8b14505f2e0387689947922e08f956 (diff) | |
download | gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.tar gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.tar.gz gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.tar.bz2 gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.tar.lz gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.tar.xz gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.tar.zst gsoc2013-evolution-b681ec2b9a98684ef821f9b6fbdb9a231a58d4b5.zip |
Here is my initial Evolution work: message composition widget and some
installation fixes for Camel.
svn path=/trunk/; revision=1369
Diffstat (limited to 'camel/gmime-rfc2047.c')
-rw-r--r-- | camel/gmime-rfc2047.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/gmime-rfc2047.c b/camel/gmime-rfc2047.c index 587c654d9f..7da12450b6 100644 --- a/camel/gmime-rfc2047.c +++ b/camel/gmime-rfc2047.c @@ -240,8 +240,9 @@ gmime_rfc2047_decode (const gchar *data, const gchar *into_what) #define isnt_ascii(a) ((a) <= 0x1f || (a) >= 0x7f) static int -rfc2047_clean (const gchar *string, const gchar *max) { - // if (strstr (string, "?=")) return 1; +rfc2047_clean (const gchar *string, const gchar *max) +{ + /* if (strstr (string, "?=")) return 1; */ while (string < max) { if (isnt_ascii ((unsigned char)*string)) return 0; |