lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lynx-dev 2.8.2dev.19 patch 1 - small ebcdic fix


From: Klaus Weide
Subject: lynx-dev 2.8.2dev.19 patch 1 - small ebcdic fix
Date: Sun, 7 Mar 1999 14:11:33 -0600 (CST)

Seems to me EBCDIC needs this small fix - no way to test it though.

Btw, PG if you are reading - did you see my note
   <http://www.flora.org/lynx-dev/html/month0299/msg00314.html>
referring to dev.15 -> dev.16 changes from
   <http://www.flora.org/lynx-dev/html/month0299/msg00186.html>?

   Klaus

* Fix of HTUnEscapeSome for non-ASCII.

--- lynx2-8-2.old/WWW/Library/Implementation/HTParse.c  Thu Jan 28 10:31:28 1999
+++ lynx2-8-2/WWW/Library/Implementation/HTParse.c      Thu Mar  4 05:15:12 1999
@@ -844,7 +844,7 @@
            isxdigit((unsigned char)p[1]) &&
            isxdigit((unsigned char)p[2]) &&
            (testcode = from_hex(p[1])*16 + from_hex(p[2])) && /* %00 no good*/
-           strchr(do_trans, testcode)) { /* it's one of the ones we want */
+           strchr(do_trans, FROMASCII(testcode))) { /* it's one of the ones we 
want */
            *q++ = FROMASCII(testcode);
            p += 3;
        } else {

reply via email to

[Prev in Thread] Current Thread [Next in Thread]