X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=parse.c;h=84adc1a165f88dc519d38d215af7924870d52efa;hp=686d9ed3ed029b43cac458c9a88c5b9d3a789a1e;hb=e96efa56257b45e9c3d1fb1b30071c57512cfe28;hpb=047342c2a0526885217e03d06e9b7a715f55b92f diff --git a/parse.c b/parse.c index 686d9ed..84adc1a 100644 --- a/parse.c +++ b/parse.c @@ -84,27 +84,6 @@ static char *read_rfc822_line (FILE *f, char *line, size_t *linelen) /* not reached */ } -static LIST *mutt_add_x_face (LIST *lst, char *face) -{ - LIST *n; - - n = safe_malloc(sizeof(LIST)); - n->data = safe_strdup(face); - n->next = NULL; - - if (lst) - { - LIST *l; - - for(l = lst; l->next; l = l->next); - l->next = n; - } - else - lst = n; - - return lst; -} - LIST *mutt_parse_references (char *s, int in_reply_to) { LIST *t, *lst = NULL; @@ -1258,11 +1237,6 @@ int mutt_parse_rfc822_line (ENVELOPE *e, HEADER *hdr, char *line, char *p, short e->x_label = safe_strdup(p); matched = 1; } - else if (ascii_strcasecmp (line+1, "-face") == 0) - { - e->x_face = mutt_add_x_face (e->x_face, p); - matched = 1; - } #ifdef USE_NNTP else if (!mutt_strcasecmp (line + 1, "-comment-to")) {