![]()
From: Hisashi Gotoh (gotoh@horae.dti.ne.jp)
Date: Thu Apr 19 2001 - 01:01:31 CDT
In case of showhtml=0, if file is attached as "message/rfc822", it can
not be HTMLized.
I think it should be enclosed with <pre>...</pre> like the body part.
What do you think?
P.S.
Thanks for committing the iso2022jp option.
-- Hisashi Gotoh
Index: print.c
===================================================================
RCS file: /CVS/hypermail/src/print.c,v
retrieving revision 1.22
diff -u -r1.22 print.c
--- print.c 2001/04/17 00:21:37 1.22
+++ print.c 2001/04/19 06:04:04
@@ -937,6 +937,11 @@
pre = FALSE;
}
fprintf(fp, "<p>\n");
+ } else {
+ if (!pre) {
+ fprintf(fp, "<pre>\n");
+ pre = TRUE;
+ }
}
inheader = FALSE;
}
![]()