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
This commit is contained in:
Jacob "Ulysses" Berkman
2000-10-10 16:57:29 +00:00
committed by Jacob Berkman
parent f004642c3b
commit 8a246228a9
5 changed files with 12 additions and 8 deletions

View File

@ -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

View File

@ -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;
}
}

View File

@ -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;

View File

@ -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) {

View File

@ -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;