%%% Created Mon Oct 22 06:19:54 MDT 2001 by target lynx.patch. %%% diff -bru orig/lynx2-8-5/src/LYStrings.c lynx2-8-5/src/LYStrings.c --- orig/lynx2-8-5/src/LYStrings.c Sat Oct 6 16:02:28 2001 +++ lynx2-8-5/src/LYStrings.c Sun Oct 21 15:23:38 2001 @@ -2398,7 +2398,7 @@ register unsigned char *buffer = (unsigned char *) arg_buffer; size_t i; for (i = 0; buffer[i]; i++) -#ifdef SUPPORT_MULTIBYTE_EDIT /* 1998/11/23 (Mon) 17:04:55 */ +#if defined(SUPPORT_MULTIBYTE_EDIT) && ! defined(EBCDIC) { if (buffer[i] & 0x80) { if ((kanji_code == SJIS) && IS_SJIS_X0201KANA(UCH((buffer[i])))) { @@ -2411,7 +2411,7 @@ } #else buffer[i] = TOLOWER(buffer[i]); -#endif +#endif /* defined(SUPPORT_MULTIBYTE_EDIT) && ! defined(EBCDIC) */ } /* @@ -2423,7 +2423,7 @@ register unsigned char *buffer = (unsigned char *) arg_buffer; size_t i; for (i = 0; buffer[i]; i++) -#ifdef SUPPORT_MULTIBYTE_EDIT /* 1998/11/23 (Mon) 17:05:10 */ +#if defined(SUPPORT_MULTIBYTE_EDIT) && ! defined(EBCDIC) { if (buffer[i] & 0x80) { if ((kanji_code == SJIS) && IS_SJIS_X0201KANA(UCH((buffer[i])))) { @@ -2436,7 +2436,7 @@ } #else buffer[i] = UCH(TOUPPER(buffer[i])); -#endif +#endif /* defined(SUPPORT_MULTIBYTE_EDIT) && ! defined(EBCDIC) */ } /*