[w3m-dev 03341] white space is needed to close an empty-element tag

* parsetagx.c (parse_tag): extract tagname until '/'
From: Daiki Ueno <ueno@unixuser.org>
This commit is contained in:
Fumitoshi UKAI
2002-10-16 18:11:15 +00:00
parent e6e9b7ae2e
commit eca32d1b71
3 changed files with 14 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: parsetagx.c,v 1.9 2002/08/27 16:39:40 ukai Exp $ */
/* $Id: parsetagx.c,v 1.10 2002/10/16 18:11:15 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "indep.h"
@@ -126,7 +126,8 @@ parse_tag(char **s, int internal)
*(p++) = *(q++);
SKIP_BLANKS(q);
}
while (*q && !IS_SPACE(*q) && *q != '>' && p - tagname < MAX_TAG_LEN - 1) {
while (*q && !IS_SPACE(*q) && !(tagname[0] != '/' && *q == '/') &&
*q != '>' && p - tagname < MAX_TAG_LEN - 1) {
*(p++) = tolower(*(q++));
}
*p = '\0';