w3m

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

commit de1fbdc3eaa2420a5a7f77757e478760cd13489c
parent 8cf4dc3c00241d14b11fe1aa58c31111a4cdcc62
Author: ukai <ukai>
Date:   Fri,  9 Jan 2004 15:46:49 +0000

[w3m-dev 04030] PUSH_TAG macro
* table.c (PUSH_TAG): fixed problem in --disable-m17n
From: ABE Yuji <cbo46560@pop12.odn.ne.jp>

Diffstat:
MChangeLog | 5+++++
Mtable.c | 2+-
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2004-01-10 ABE Yuji <cbo46560@pop12.odn.ne.jp> + + * [w3m-dev 04030] PUSH_TAG macro + * table.c (PUSH_TAG): fixed problem in --disable-m17n + 2003-12-09 WATANABE Katsuyuki <knabe@sannet.ne.jp> * [w3m-dev 04025] mismatch message in ja.po diff --git a/table.c b/table.c @@ -412,7 +412,7 @@ suspend_or_pushdata(struct table *tbl, char *line) } } -#ifndef USE_M17N +#ifdef USE_M17N #define PUSH_TAG(str,n) Strcat_charp_n(tagbuf, str, n) #else #define PUSH_TAG(str,n) Strcat_char(tagbuf, *str)