This commit is contained in:
rhp
2001-05-31 06:42:58 +00:00
parent 1785975f38
commit ebb2b489b0
13 changed files with 721 additions and 31 deletions

View File

@ -73,6 +73,16 @@ meta_error_trap_pop (MetaDisplay *display)
display->error_traps = next;
g_free (et);
if (result != Success)
{
gchar buf[64];
XGetErrorText (display->xdisplay, result, buf, 63);
meta_verbose ("Popping error code %d (%s)\n",
result, buf);
}
return result;
}
@ -127,7 +137,7 @@ x_io_error_handler (Display *xdisplay)
display = meta_display_for_x_display (xdisplay);
if (display == NULL)
meta_bug ("Error received for unknown display?\n");
meta_bug ("IO error received for unknown display?\n");
if (errno == EPIPE)
{