diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2008-09-06 15:47:47 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2008-09-06 15:47:47 -0400 |
commit | b027e6c551e944c3de2c6a41958afbdfcbb9e942 (patch) | |
tree | 0de5acdb29ed7fb4794713db1cd1ae38b387d3e7 /WWW/Library/Implementation/HTWAIS.c | |
parent | 260d8a57df392ef59b6430ccadf4e9e5bcdefe12 (diff) | |
download | lynx-snapshots-b027e6c551e944c3de2c6a41958afbdfcbb9e942.tar.gz |
snapshot of project "lynx", label v2-8-7dev_9i
Diffstat (limited to 'WWW/Library/Implementation/HTWAIS.c')
-rw-r--r-- | WWW/Library/Implementation/HTWAIS.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTWAIS.c b/WWW/Library/Implementation/HTWAIS.c index fcc64344..0e09f761 100644 --- a/WWW/Library/Implementation/HTWAIS.c +++ b/WWW/Library/Implementation/HTWAIS.c @@ -1,4 +1,7 @@ -/* WorldWideWeb - Wide Area Informaion Server Access HTWAIS.c +/* + * $LynxId: HTWAIS.c,v 1.31 2008/09/06 15:47:08 tom Exp $ + * + * WorldWideWeb - Wide Area Informaion Server Access HTWAIS.c * ================================================== * * This module allows a WWW server or client to read data from a @@ -436,7 +439,7 @@ static void output_text_record(HTStream *target, count += 4; /* it is a paragraph marker */ } else if (ch == '\n' || ch == '\r') { PUTC('\n'); - } else if (HTCJK != NOCJK || ch == '\t' || isprint(ch)) { + } else if (IS_CJK_TTY || ch == '\t' || isprint(ch)) { PUTC(ch); } } |