aboutsummaryrefslogtreecommitdiffstats
path: root/frame.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-26 17:12:15 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-26 17:12:15 +0000
commitcbda71d2a8566de8d78096a404721dcd31320f68 (patch)
tree0090c2a2e28c3db9b4b06fc913f10841e8028ddf /frame.c
parentframe.c (createFrameFile): html_quote() (diff)
downloadw3m-cbda71d2a8566de8d78096a404721dcd31320f68.tar.gz
w3m-cbda71d2a8566de8d78096a404721dcd31320f68.zip
q already html_quote()ed
fix indent
Diffstat (limited to '')
-rw-r--r--frame.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/frame.c b/frame.c
index f65c5ef..7738c4d 100644
--- a/frame.c
+++ b/frame.c
@@ -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);
}
}
}