(x_destroy_window) [SOLARIS2]: Don't free the IC or IM.
This commit is contained in:
parent
ce7f6d62bc
commit
a9978dd866
1 changed files with 4 additions and 0 deletions
|
@ -5558,7 +5558,11 @@ x_destroy_window (f)
|
|||
if (FRAME_XIM (f))
|
||||
{
|
||||
XDestroyIC (FRAME_XIC (f));
|
||||
#ifndef SOLARIS2 /* This code causes crashes on Solaris 2.3 and 2.5,
|
||||
due to an apparent bug in XCloseIM.
|
||||
The bug may be only in Openwin and not in X11R6. */
|
||||
XCloseIM (FRAME_XIM (f));
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->window_desc);
|
||||
|
|
Loading…
Add table
Reference in a new issue