From 9bf613486938132161aa62560b3d13bbe0376cab Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Mon, 6 Dec 2004 17:31:27 +0000 Subject: [PATCH] ICU-4280 Improve the z/OS ASCII support. The Lotus specific addition apparently wasn't needed. X-SVN-Rev: 16923 --- icu4c/source/tools/toolutil/uoptions.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/icu4c/source/tools/toolutil/uoptions.h b/icu4c/source/tools/toolutil/uoptions.h index 2376d1418ef..55e30f681b2 100644 --- a/icu4c/source/tools/toolutil/uoptions.h +++ b/icu4c/source/tools/toolutil/uoptions.h @@ -22,10 +22,11 @@ #include "unicode/utypes.h" /* This should usually be called before calling u_parseArgs */ -#if defined(OS390) && (U_CHARSET_FAMILY == U_ASCII_FAMILY) +/*#if defined(OS390) && (U_CHARSET_FAMILY == U_ASCII_FAMILY)*/ /* translate args from EBCDIC to ASCII */ -# define U_MAIN_INIT_ARGS(argc, argv) __argvtoascii_a(argc, argv) -#elif defined(XP_MAC_CONSOLE) +/*# define U_MAIN_INIT_ARGS(argc, argv) __argvtoascii_a(argc, argv)*/ +/*#elif defined(XP_MAC_CONSOLE)*/ +#if defined(XP_MAC_CONSOLE) # include /* Get the arguments from the GUI, since old Macs don't have a console Window. */ # define U_MAIN_INIT_ARGS(argc, argv) argc = ccommand((char***)&argv)