* Implement a different way to delete a password from the cache.
[alpine.git] / contrib / carmel / pine / mailview.c.patch
blob5dc9c9af206799b9d0782d4802010f8e75d4c3c0
1 *** mailview.c Wed Aug 17 17:19:56 1994
2 --- mailview.c.new Wed Aug 31 19:04:19 1994
3 ***************
4 *** 132,139 ****
5 --- 132,147 ----
6 void redraw_scroll_text();
7 #endif
9 + #ifdef BWC
10 + #ifdef ANSI
11 + void gf_glyph2richtext(FILTER_S *, int, int);
12 + #else
13 + void gf_glyph2richtext();
14 + #endif
15 + #endif
19 /*----------------------------------------------------------------------
20 Format a buffer with the text of the current message for browser
22 ***************
23 *** 892,897 ****
24 --- 900,914 ----
25 filter_t aux_filter[4];
26 int filtcnt = 0, error_found = 0;
27 char *err;
29 + #ifdef BWC
30 + if(att->body->subtype != NULL &&
31 + strucmp(att->body->subtype, "X-bwc-glyph") == 0) {
32 + aux_filter[filtcnt++] = gf_glyph2richtext;
33 + gf_enriched2plain_opt(0); /* don't strip everything! */
34 + aux_filter[filtcnt++] = gf_enriched2plain;
35 + }
36 + #endif
38 if(att->body->subtype){
39 if(!strucmp(att->body->subtype, "richtext")) {