diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-12-08 14:23:44 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-12-08 14:23:44 +0000 |
commit | 52a09ad262691ae0ef8dc2892ef1709d45ec8ec7 (patch) | |
tree | 1db42be0b3165ce6d93d4f38600b315067cad687 /file.c | |
parent | [w3m-dev 03536] <del>, <s> (diff) | |
download | w3m-52a09ad262691ae0ef8dc2892ef1709d45ec8ec7.tar.gz w3m-52a09ad262691ae0ef8dc2892ef1709d45ec8ec7.zip |
fix indent
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.151 2002/12/06 16:49:49 ukai Exp $ */ +/* $Id: file.c,v 1.152 2002/12/08 14:23:44 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -5005,7 +5005,8 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit) registerName(buf, id, currentLn(buf), pos); } if (parsedtag_get_value(tag, ATTR_HREF, &p)) - p = url_quote_conv(remove_space(p), buf->document_code); + p = url_quote_conv(remove_space(p), + buf->document_code); if (parsedtag_get_value(tag, ATTR_TARGET, &q)) q = url_quote_conv(q, buf->document_code); if (parsedtag_get_value(tag, ATTR_REFERER, &r)) @@ -5070,7 +5071,8 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit) #endif s = NULL; parsedtag_get_value(tag, ATTR_TITLE, &s); - p = url_quote_conv(remove_space(p), buf->document_code); + p = url_quote_conv(remove_space(p), + buf->document_code); a_img = registerImg(buf, p, s, currentLn(buf), pos); #ifdef USE_IMAGE a_img->hseq = iseq; @@ -5221,7 +5223,8 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit) break; if (parsedtag_get_value(tag, ATTR_HREF, &p)) { MapArea *a; - p = url_quote_conv(remove_space(p), buf->document_code); + p = url_quote_conv(remove_space(p), + buf->document_code); t = NULL; parsedtag_get_value(tag, ATTR_TARGET, &t); q = ""; @@ -5270,7 +5273,8 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit) break; case HTML_BASE: if (parsedtag_get_value(tag, ATTR_HREF, &p)) { - p = url_quote_conv(remove_space(p), buf->document_code); + p = url_quote_conv(remove_space(p), + buf->document_code); if (!buf->baseURL) buf->baseURL = New(ParsedURL); parseURL(p, buf->baseURL, NULL); |