diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-26 17:12:15 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-26 17:12:15 +0000 |
commit | cbda71d2a8566de8d78096a404721dcd31320f68 (patch) | |
tree | 0090c2a2e28c3db9b4b06fc913f10841e8028ddf /frame.c | |
parent | frame.c (createFrameFile): html_quote() (diff) | |
download | w3m-cbda71d2a8566de8d78096a404721dcd31320f68.tar.gz w3m-cbda71d2a8566de8d78096a404721dcd31320f68.zip |
q already html_quote()ed
fix indent
Diffstat (limited to '')
-rw-r--r-- | frame.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,4 +1,4 @@ -/* $Id: frame.c,v 1.20 2002/11/26 17:08:01 ukai Exp $ */ +/* $Id: frame.c,v 1.21 2002/11/26 17:12:15 ukai Exp $ */ #include "fm.h" #include "parsetagx.h" #include "myctype.h" @@ -622,12 +622,13 @@ createFrameFile(struct frameset *f, FILE * f1, Buffer *current, int level, parsedtag_get_value(tag, ATTR_CONTENT, &q); if (q) { Str s_tmp; - int refresh_interval = getMetaRefreshParam(q, &s_tmp); + int refresh_interval = + getMetaRefreshParam(q, &s_tmp); if (s_tmp) { - q = html_quote(s_tmp->ptr); - fprintf(f1, "Refresh (%d sec) <a href=\"%s\">%s</a>\n", - refresh_interval, - html_quote(q), html_quote(q)); + q = html_quote(s_tmp->ptr); + fprintf(f1, + "Refresh (%d sec) <a href=\"%s\">%s</a>\n", + refresh_interval, q, q); } } } |