aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
author2 <notzed@helixcode.com>2000-05-03 02:05:13 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-05-03 02:05:13 +0800
commitb5ddb0c7c8c57e292e187f625f84e8523303e05a (patch)
tree6d25c6da2ee9c71ee94740a4f6a35ed5709cb896 /camel
parentab96ee0005ce9a33df2217553d07c53be0e9ba69 (diff)
downloadgsoc2013-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')
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/camel-mime-part-utils.c8
2 files changed, 9 insertions, 5 deletions
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 <notzed@helixcode.com>
+
+ * camel-mime-part-utils.c
+ (simple_data_wrapper_construct_from_parser): Dont use autofill on
+ these fucking long function anmes!!!!!!
+
2000-05-02 NotZed <NotZed@HelixCode.com>
* 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 <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);