w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 2dbccb9e16ecfe5d5df32955801443a0129f9394
parent acc8f08a55235b700328959d15867b037794333a
Author: ukai <ukai>
Date:   Thu, 22 Nov 2001 13:35:45 +0000

[w3m-dev 02498]
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>

Diffstat:
MChangeLog | 5+++++
Mtable.c | 6+++---
2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2001-11-22 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> + + * table.c (feed_table): fix the following table + <table border=1><tr><td>&lt &lt;</table> + 2001-11-22 WATANABE Katsuyuki <katsuyuki_1.watanabe@toppan.co.jp> * [w3m-dev 02497] diff --git a/table.c b/table.c @@ -3012,13 +3012,13 @@ feed_table(struct table *tbl, char *line, struct table_mode *mode, q = p; switch (ec = getescapechar(&p)) { case '<': - Strcat_charp(tmp, "<"); + Strcat_charp(tmp, "&lt;"); break; case '>': - Strcat_charp(tmp, ">"); + Strcat_charp(tmp, "&gt;"); break; case '&': - Strcat_charp(tmp, "&"); + Strcat_charp(tmp, "&amp;"); break; case '\r': Strcat_char(tmp, '\n');