From 5f8e0f8ef9a422691dd72e8a953a42a41478fcb4 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Wed, 4 May 2011 16:18:09 +0900 Subject: Releasing debian version 0.5.1-1 --- debian/patches/04-w3m-0.3.2.1-frame-fix-backport | 53 ------------------------ 1 file changed, 53 deletions(-) delete mode 100644 debian/patches/04-w3m-0.3.2.1-frame-fix-backport (limited to 'debian/patches/04-w3m-0.3.2.1-frame-fix-backport') diff --git a/debian/patches/04-w3m-0.3.2.1-frame-fix-backport b/debian/patches/04-w3m-0.3.2.1-frame-fix-backport deleted file mode 100644 index a6180cb..0000000 --- a/debian/patches/04-w3m-0.3.2.1-frame-fix-backport +++ /dev/null @@ -1,53 +0,0 @@ -PATCH: -p1 - - ---- w3m-0.3.orig/frame.c Sat Feb 9 15:27:14 2002 -+++ w3m-0.3/frame.c Wed Nov 27 06:46:03 2002 -@@ -535,14 +535,15 @@ - frame.body->attr = F_UNLOADED; - if (frame.body->flags & FB_NO_BUFFER) - fprintf(f1, "Open %s with other method", -- frame.body->url); -+ html_quote(frame.body->url)); - else if (frame.body->url) -- fprintf(f1, "Can't open %s", frame.body->url); -+ fprintf(f1, "Can't open %s", -+ html_quote(frame.body->url)); - else - fprintf(f1, - "This frame (%s) contains no src attribute", -- frame.body->name ? frame.body-> -- name : "(no name)"); -+ frame.body->name ? -+ html_quote(frame.body->name) : "(no name)"); - break; - } - parseURL2(frame.body->url, &base, currentURL); -@@ -636,7 +637,7 @@ - /* prohibit_tags */ - Strshrinkfirst(tok, 1); - Strshrink(tok, 1); -- fprintf(f1, "", tok->ptr); -+ fprintf(f1, "", html_quote(tok->ptr)); - goto token_end; - case HTML_TABLE: - t_stack++; -@@ -649,7 +650,7 @@ - Strshrink(tok, 1); - fprintf(f1, - "", -- tok->ptr); -+ html_quote(tok->ptr)); - goto token_end; - } - break; -@@ -669,7 +670,8 @@ - if (!t_stack) { - Strshrinkfirst(tok, 1); - Strshrink(tok, 1); -- fprintf(f1, "", tok->ptr); -+ fprintf(f1, "", -+ html_quote(tok->ptr)); - goto token_end; - - } -- cgit v1.2.3