Re: ncurses segmentation fault

1998-10-13 Thread Ingo Brueckl
Quoting Mike Stone ([EMAIL PROTECTED]): > Looks like an ncurses bug. Works fine with the libncurses4-dev > package from slink. You're right, I compiled it with libncurses4 and my program starts, but unfortunately all the colors have gone. :-( Instead of colors, everything is bold now. I update

Re: ncurses segmentation fault

1998-10-12 Thread J.H.M. Dassen \(Ray\)
On Mon, Oct 12, 1998 at 11:54:14AM +0200, Ingo Brueckl wrote: > The following program, compiled with egcs 1.0.3, causes a segmentation > fault at the mvwinch statement: Why are you rehashing this on -user? You've already reported this problem as a bug, and as you can check in the bug log (http://w

Re: ncurses segmentation fault

1998-10-12 Thread Michael Stone
Quoting Ingo Brueckl ([EMAIL PROTECTED]): > Package: ncurses3.4 > Version: 1.9.9g-8.8 > > The following program, compiled with egcs 1.0.3, causes a segmentation > fault at the mvwinch statement: Looks like an ncurses bug. Works fine with the libncurses4-dev package from slink. Mike Stone

Re: ncurses segmentation fault

1998-10-12 Thread Michael Stone
Quoting M.C. Vernon ([EMAIL PROTECTED]): > Do you not need to include stdio.h for getch? man getch. It's an ncurses function, not a std library function. Mike Stone

Re: ncurses segmentation fault

1998-10-12 Thread M.C. Vernon
On Mon, 12 Oct 1998, Ingo Brueckl wrote: > Package: ncurses3.4 > Version: 1.9.9g-8.8 > > The following program, compiled with egcs 1.0.3, causes a segmentation > fault at the mvwinch statement: > > #include > int main () > { > WINDOW *win; > initscr(); > refresh(); > win = newwin(0, 0,

ncurses segmentation fault

1998-10-12 Thread Ingo Brueckl
Package: ncurses3.4 Version: 1.9.9g-8.8 The following program, compiled with egcs 1.0.3, causes a segmentation fault at the mvwinch statement: #include int main () { WINDOW *win; initscr(); refresh(); win = newwin(0, 0, 10, 10); getch(); chtype r = mvwinch(win, 1, 1); getch(); en