diff options
author | Dai Sato <satodai@w3m.jp> | 2006-04-07 13:21:11 +0000 |
---|---|---|
committer | Dai Sato <satodai@w3m.jp> | 2006-04-07 13:21:11 +0000 |
commit | 22d66ca5850bf0190aa48d7f4442484f01fc7d02 (patch) | |
tree | 5b96b7e5bd65f08ad23867bc0738a0fef56f35df /parsetagx.c | |
parent | apply multiple patches on w3m-dev(-en) ML since Jun 2005 to Jan 2006. (diff) | |
download | w3m-22d66ca5850bf0190aa48d7f4442484f01fc7d02.tar.gz w3m-22d66ca5850bf0190aa48d7f4442484f01fc7d02.zip |
rewind to 10 Feb 2006.
Diffstat (limited to 'parsetagx.c')
-rw-r--r-- | parsetagx.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/parsetagx.c b/parsetagx.c index 5d8970e..be5c013 100644 --- a/parsetagx.c +++ b/parsetagx.c @@ -1,4 +1,4 @@ -/* $Id: parsetagx.c,v 1.15 2006/04/05 14:18:54 inu Exp $ */ +/* $Id: parsetagx.c,v 1.16 2006/04/07 13:21:12 inu Exp $ */ #include "fm.h" #include "myctype.h" #include "indep.h" @@ -182,8 +182,6 @@ parse_tag(char **s, int internal) while (*q && *q != '"') { if (*q != '\n') Strcat_char(value, *q); - else - Strcat_char(value, ' '); if (!tag->need_reconstruct && is_html_quote(*q)) tag->need_reconstruct = TRUE; q++; @@ -196,8 +194,6 @@ parse_tag(char **s, int internal) while (*q && *q != '\'') { if (*q != '\n') Strcat_char(value, *q); - else - Strcat_char(value, ' '); if (!tag->need_reconstruct && is_html_quote(*q)) tag->need_reconstruct = TRUE; q++; |