aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}
}
}