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 | |
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
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/camel-internet-address.c | 2 | ||||
-rw-r--r-- | camel/camel-mime-parser.c | 2 | ||||
-rw-r--r-- | camel/camel-mime-utils.c | 8 | ||||
-rw-r--r-- | camel/camel-seekable-substream.c | 4 |
5 files changed, 12 insertions, 8 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 6ab300c4b0..3bc9613921 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2000-10-10 Jacob "Ulysses" Berkman <jacob@helixcode.com> + + * camel-*.c: teach camel about "its" vs. "it's" + 2000-10-09 Chris Toshok <toshok@helixcode.com> * providers/nntp/camel-nntp-store.c (finalize): write out the diff --git a/camel/camel-internet-address.c b/camel/camel-internet-address.c index 7f15c242a6..878ff1ca7b 100644 --- a/camel/camel-internet-address.c +++ b/camel/camel-internet-address.c @@ -87,7 +87,7 @@ internet_decode (CamelAddress *a, const char *raw) while (g) { if (g->type == HEADER_ADDRESS_NAME) camel_internet_address_add((CamelInternetAddress *)a, g->name, g->v.addr); - /* otherwise, its an error, infact */ + /* otherwise, it's an error, infact */ g = g->next; } } diff --git a/camel/camel-mime-parser.c b/camel/camel-mime-parser.c index 08b9868912..e07bb27682 100644 --- a/camel/camel-mime-parser.c +++ b/camel/camel-mime-parser.c @@ -551,7 +551,7 @@ camel_mime_parser_content_type(CamelMimeParser *m) { struct _header_scan_state *s = _PRIVATE(m); - /* FIXME: should this search up until its found the 'right' + /* FIXME: should this search up until it's found the 'right' content-type? can it? */ if (s->parts) return s->parts->content_type; 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) { diff --git a/camel/camel-seekable-substream.c b/camel/camel-seekable-substream.c index d62fc3bba4..9b197f97bd 100644 --- a/camel/camel-seekable-substream.c +++ b/camel/camel-seekable-substream.c @@ -173,7 +173,7 @@ stream_read (CamelStream *stream, char *buffer, unsigned int n) v = camel_stream_read (CAMEL_STREAM (parent), buffer, n); - /* ignore <0 - its an error, let the caller deal */ + /* ignore <0 - it's an error, let the caller deal */ if (v > 0) seekable_stream->position += v; @@ -184,7 +184,7 @@ static int stream_write (CamelStream *stream, const char *buffer, unsigned int n) { /* NOT VALID ON SEEKABLE SUBSTREAM */ - /* Well, its entirely valid, just not implemented */ + /* Well, it's entirely valid, just not implemented */ g_warning ("CamelSeekableSubstream:: seekable substream doesn't " "have a write method yet?\n"); return -1; |