1. bug report and untested correction uploaded to sourceForge
- Posted by jacques deschênes <desja at globe?rotter.n?t> Sep 15, 2007
- 549 views
I reported two new bug on SourceForge regarding gets(0) and I modified be_runtime.c wingetch() and key_gets() functions to correct those 2 bugs. The modification I made is uploaded with an added note in request id: 1795493 I didn't test my modif because I don't want to spend time learning how to compile the backend and how to svn. So I let it to members of admin group. regards, jacques Deschênes
2. Re: bug report and untested correction uploaded to sourceForge
- Posted by Derek Parnell <ddparnell at big?on?.com> Sep 15, 2007
- 572 views
jacques deschênes wrote: > > I reported two new bug on SourceForge regarding gets(0) and I modified > be_runtime.c wingetch() and key_gets() functions to correct those 2 bugs. > The modification I made is uploaded with an added note in request id: 1795493 > I didn't test my modif because I don't want to spend time learning how to > compile > the backend and how to svn. > So I let it to members of admin group. > On SourceForge, I've just merged this mod into the cchris and 3.1.1 branches. There were two changes: (A) ----------- Test for CONTROL_Z when compiling with ELCC and EBORLAND. CONTROL_Z means end of file when received from the console. if (c == CONTROL_Z) c = -1; //JD2007-09-15 added this line so code // translated with borland or ELCC compiler behave // like watcom translated ones regarding CTRL-Z (B) ----------- Allow extended ascii characters (values 128 to 255) to be entered via the keyboard. //JD2007-09-15, replaced c <= 127 by c <= 255 to accept extended ASCII code from keyboard else if (c >= CONTROL_Z && c <= 255) { -- Derek Parnell Melbourne, Australia Skype name: derek.j.parnell