diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-01-09 15:46:49 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-01-09 15:46:49 +0000 |
commit | d49a58a6de0d32a181d9ecfeefc70383d14ef0da (patch) | |
tree | 74bb07e338cf68f342cb253a5b99e1b843938cac /table.c | |
parent | [w3m-dev 04025] mismatch message in ja.po (diff) | |
download | w3m-d49a58a6de0d32a181d9ecfeefc70383d14ef0da.tar.gz w3m-d49a58a6de0d32a181d9ecfeefc70383d14ef0da.zip |
[w3m-dev 04030] PUSH_TAG macro
* table.c (PUSH_TAG): fixed problem in --disable-m17n
From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | table.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: table.c,v 1.48 2003/09/24 18:49:00 ukai Exp $ */ +/* $Id: table.c,v 1.49 2004/01/09 15:46:49 ukai Exp $ */ /* * HTML table */ @@ -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) |