*** charset.c.bak Mon Feb 13 18:32:14 1995 --- charset.c Wed May 24 06:26:10 1995 *************** *** 146,155 **** */ #ifndef DEFAULT_CSET #define DEFAULT_CSET "noconv" #endif #ifndef DEFAULT_RU_CSET ! #define DEFAULT_RU_CSET "noconv" #endif /* End of Russian section */ --- 146,163 ---- */ #ifndef DEFAULT_CSET + #ifdef MSDOS + #define DEFAULT_CSET "cp850" + #else #define DEFAULT_CSET "noconv" #endif + #endif #ifndef DEFAULT_RU_CSET ! #ifdef MSDOS ! #define DEFAULT_RU_CSET "alt_codes" ! #else ! #define DEFAULT_RU_CSET "koi8" ! #endif #endif /* End of Russian section */ *************** *** 159,169 **** unsigned char *ext_c_ptr; static unsigned char *int_c_ptr; - #ifdef MSDOS - char charset[64] = "cp850"; - #else char charset[64] = ""; - #endif void init_charset(void) --- 167,173 ----