From b5ddb0c7c8c57e292e187f625f84e8523303e05a Mon Sep 17 00:00:00 2001 From: 2 Date: Tue, 2 May 2000 18:05:13 +0000 Subject: Dont use autofill on these fucking long function anmes!!!!!! 2000-05-02 * camel-mime-part-utils.c (simple_data_wrapper_construct_from_parser): Dont use autofill on these fucking long function anmes!!!!!! svn path=/trunk/; revision=2750 --- camel/ChangeLog | 6 ++++++ camel/camel-mime-part-utils.c | 8 +++----- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'camel') diff --git a/camel/ChangeLog b/camel/ChangeLog index 8499c97b26..0a07b05601 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2000-05-02 + + * camel-mime-part-utils.c + (simple_data_wrapper_construct_from_parser): Dont use autofill on + these fucking long function anmes!!!!!! + 2000-05-02 NotZed * providers/mbox/camel-mbox-summary.c diff --git a/camel/camel-mime-part-utils.c b/camel/camel-mime-part-utils.c index 83433c06ba..972081cb65 100644 --- a/camel/camel-mime-part-utils.c +++ b/camel/camel-mime-part-utils.c @@ -1,4 +1,4 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; fill-column: 160 -*- */ /* camel-mime-part-utils : Utility for mime parsing and so on * * Authors: Bertrand Guiheneuf @@ -104,8 +104,7 @@ simple_data_wrapper_construct_from_parser(CamelDataWrapper *dw, CamelMimeParser buffer = g_byte_array_new(); if (!cache) { - start = camel_mime_parser_tell(mp) + - seekable_source->bound_start; + start = camel_mime_parser_tell(mp) + seekable_source->bound_start; } while ( camel_mime_parser_step(mp, &buf, &len) != HSCAN_BODY_END ) { if (buffer) { @@ -134,8 +133,7 @@ simple_data_wrapper_construct_from_parser(CamelDataWrapper *dw, CamelMimeParser d(printf("Big message part, left on disk ...\n")); - end = camel_mime_parser_tell(mp) + - seekable_source->bound_start; + end = camel_mime_parser_tell(mp) + seekable_source->bound_start; sub = camel_seekable_substream_new_with_seekable_stream_and_bounds (seekable_source, start, end); if (fdec || fch) { filter = camel_stream_filter_new_with_stream(sub); -- cgit