aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--camel/ChangeLog4
-rw-r--r--camel/camel-internet-address.c2
-rw-r--r--camel/camel-mime-parser.c2
-rw-r--r--camel/camel-mime-utils.c8
-rw-r--r--camel/camel-seekable-substream.c4
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;