commit 604f7cb03ba7d450d76f875887bbb3165723b0fa
parent 2400e794168404353d61982cd8173feb9d937e6d
Author: ukai <ukai>
Date: Mon, 9 Dec 2002 15:33:33 +0000
[w3m-dev 03544] Can't display "1&2" in table
* file.c (HTMLlineproc0): continue -> R_ST_NORMAL
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-10 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
+
+ * [w3m-dev 03544] Can't display "1&2" in table
+ * file.c (HTMLlineproc0): continue -> R_ST_NORMAL
+
2002-12-10 Fumitoshi UKAI <ukai@debian.or.jp>
* file.c (loadGeneralFile): missing `{', fix indent for SCM_UNKNOWN
diff --git a/file.c b/file.c
@@ -5616,7 +5616,7 @@ HTMLlineproc0(char *line, struct html_feed_environ *h_env, int internal)
else {
read_token(tokbuf, &line, &obuf->status, pre_mode & RB_PREMODE, 0);
if (obuf->status != R_ST_NORMAL) /* R_ST_AMP ? */
- continue;
+ obuf->status = R_ST_NORMAL;
str = tokbuf->ptr;
}