Displaying 1 result from an estimated 1 matches for "iogc".
Did you mean:
ioc
2002 Apr 11
1
segmentation violation when closing the data entry window (PR#1453)
...twice -
on the first time, the window closes, the second time I get the error.
This is with r-devel as of today, with "CFLAGS -g". I edited
closewin() in dataentry.c to show me when it is called:
void closewin(void)
{
printf("In routine closewin\n");
XFreeGC(iodisplay, iogc);
XDestroyWindow(iodisplay, iowindow);
XCloseDisplay(iodisplay);
}
% bin/R
> x <- edit(data.frame())
The data frame pops up. I just click on the Window manager close
button (not the "Quit" button):
In routine closewin
In routine closewin
Program received signal SIGSEGV...