From d876f85fb936b34344d3c97d0be4bd63f6cb4ad0 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Tue, 26 Nov 2002 17:08:00 +0000 Subject: frame.c (createFrameFile): html_quote() From: Fumitoshi UKAI --- frame.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'frame.c') diff --git a/frame.c b/frame.c index 0ee521a..f65c5ef 100644 --- a/frame.c +++ b/frame.c @@ -1,4 +1,4 @@ -/* $Id: frame.c,v 1.19 2002/11/26 17:05:24 ukai Exp $ */ +/* $Id: frame.c,v 1.20 2002/11/26 17:08:01 ukai Exp $ */ #include "fm.h" #include "parsetagx.h" #include "myctype.h" @@ -614,7 +614,7 @@ createFrameFile(struct frameset *f, FILE * f1, Buffer *current, int level, } Strshrinkfirst(tok, 1); Strshrink(tok, 1); - fprintf(f1, "", tok->ptr); + fprintf(f1, "", html_quote(tok->ptr)); goto token_end; case HTML_META: parsedtag_get_value(tag, ATTR_HTTP_EQUIV, &q); @@ -626,7 +626,8 @@ createFrameFile(struct frameset *f, FILE * f1, Buffer *current, int level, if (s_tmp) { q = html_quote(s_tmp->ptr); fprintf(f1, "Refresh (%d sec) %s\n", - refresh_interval, q, q); + refresh_interval, + html_quote(q), html_quote(q)); } } } -- cgit v1.2.3