diff options
author | 2 <notzed@helixcode.com> | 2000-05-03 02:05:13 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-05-03 02:05:13 +0800 |
commit | b5ddb0c7c8c57e292e187f625f84e8523303e05a (patch) | |
tree | 6d25c6da2ee9c71ee94740a4f6a35ed5709cb896 /camel/camel-mime-part-utils.c | |
parent | ab96ee0005ce9a33df2217553d07c53be0e9ba69 (diff) | |
download | gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.tar gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.tar.gz gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.tar.bz2 gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.tar.lz gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.tar.xz gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.tar.zst gsoc2013-evolution-b5ddb0c7c8c57e292e187f625f84e8523303e05a.zip |
Dont use autofill on these fucking long function anmes!!!!!!
2000-05-02 <notzed@helixcode.com>
* 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
Diffstat (limited to 'camel/camel-mime-part-utils.c')
-rw-r--r-- | camel/camel-mime-part-utils.c | 8 |
1 files changed, 3 insertions, 5 deletions
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 <bertrand@helixcode.com> @@ -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); |