diff options
author | Jacob "Ulysses" Berkman <jacob@helixcode.com> | 2000-10-11 00:57:29 +0800 |
---|---|---|
committer | Jacob Berkman <jberkman@src.gnome.org> | 2000-10-11 00:57:29 +0800 |
commit | 8a246228a94dcd8ae862c17cadaadaecfaae308c (patch) | |
tree | 1875e1addc01486e66579df1979c061b9758e470 /camel/camel-mime-utils.c | |
parent | f004642c3b8066d272957206c0ad7d8fdb963432 (diff) | |
download | gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.gz gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.bz2 gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.lz gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.xz gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.zst gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.zip |
teach camel about "its" vs. "it's"
2000-10-10 Jacob "Ulysses" Berkman <jacob@helixcode.com>
* camel-*.c: teach camel about "its" vs. "it's"
svn path=/trunk/; revision=5819
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 510a4e3735..b01d263d87 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -334,7 +334,7 @@ base64_encode_step(unsigned char *in, int len, unsigned char *out, int *state, i c2 = ((unsigned char *)save)[2]; goto skip2; } - /* yes, we jump into the loop, no i'm not going to change it, its beautiful! */ + /* yes, we jump into the loop, no i'm not going to change it, it's beautiful! */ while (inptr < inend) { c1 = *inptr++; skip1: @@ -542,7 +542,7 @@ quoted_encode_close(unsigned char *in, int len, unsigned char *out, int *state, last = *state; if (last != -1) { - /* space/tab must be encoded if its the last character on + /* space/tab must be encoded if it's the last character on the line */ if (is_qpsafe(last) && last!=' ' && last!=9) { *outptr++ = last; @@ -2433,7 +2433,7 @@ header_decode_date(const char *in, int *saveoffset) header_decode_lwsp (&inptr); if (!isdigit (*inptr)) { char *day = decode_token (&inptr); - /* we dont really care about the day, its only for display */ + /* we dont really care about the day, it's only for display */ if (day) { d(printf ("got day: %s\n", day)); g_free (day); @@ -2444,7 +2444,7 @@ header_decode_date(const char *in, int *saveoffset) #ifndef CLEAN_DATE char *newdate; - w(g_warning("day not followed by ',' its probably a broken mail client, so we'll ignore its date entirely")); + w(g_warning("day not followed by ',' it's probably a broken mail client, so we'll ignore its date entirely")); printf ("Giving it one last chance...\n"); newdate = parse_broken_date (in); if (newdate) { |