[w3m-dev 02547] "message/*" as a kind of text type

From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2001-11-25 17:41:57 +00:00
parent 7f88aaf6cc
commit 16a03de654
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2001-11-26 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02547] "message/*" as a kind of text type
* file.c (is_text_type): add message/*
2001-11-25 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02535] Name conflicts in configure

5
file.c
View File

@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.14 2001/11/24 02:01:26 ukai Exp $ */
/* $Id: file.c,v 1.15 2001/11/25 17:41:57 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -208,7 +208,8 @@ static int
is_text_type(char *type)
{
return (type == NULL || type[0] == '\0' ||
strncasecmp(type, "text/", 5) == 0);
strncasecmp(type, "text/", 5) == 0 ||
strncasecmp(type, "message/", sizeof("message/") - 1) == 0);
}
static int