In a recent note, Henry Nelson said:
> Date: Thu, 1 Mar 2001 13:48:07 +0900 (JST)
> ^^^^^^^^
> Maybe
>
> # VERBOSE_IMAGES controls whether Lynx replaces [LINK], [INLINE] and [IMAGE]
>
Thanks for your encouragement. I found the problem (patch attached).
This is old, dating back at least to 2.8.2. I rarely encountered pages
that exposed it.
-- gil
--
StorageTek
INFORMATION made POWERFUL
%%% Created Fri Mar 2 15:30:30 MST 2001 by target lynx.patch. %%%
diff -ru orig/lynx2-8-4/WWW/Library/Implementation/HTChunk.c
lynx2-8-4/WWW/Library/Implementation/HTChunk.c
--- orig/lynx2-8-4/WWW/Library/Implementation/HTChunk.c Mon Feb 14 21:07:39 2000
+++ lynx2-8-4/WWW/Library/Implementation/HTChunk.c Fri Mar 2 15:27:41 2001
@@ -157,7 +157,7 @@
{
int utflen;
- if (code < 128)
+ if (TOASCII(code) < 128)
utflen = 1;
else if (code < 0x800L) {
utflen = 2;