hitoaki@nttlab.ntt.junet (SAKAMOTO Hitoaki) (02/24/90)
I am elm user. I want to "elm" Japanese message version . I am replacing message in elm to Japanese.But Japanese message (I am using 8-bit code) can't use. I am edited "curses.c". Is this correct? and Is this no probrem? Thank you. Hitoaki Sakamoto. -------- *** elm-2.2J/src/curses.c Fri Feb 23 10:16:42 1990 --- elm-2.2/src/curses.c Thu Feb 22 10:45:49 1990 *************** *** 645,652 **** } else { /* if some kind of control or non ascii character change to a '?' */ ! if(iscntrl(ch)) ch = '?'; /* if we have no columns left and this terminal doesn't do --- 645,651 ---- } else { /* if some kind of control or non ascii character change to a '?' */ ! if(iscntrl(ch) || !isascii(ch)) ch = '?'; /* if we have no columns left and this terminal doesn't do