Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a9978dd8
Commit
a9978dd8
authored
Apr 02, 1996
by
Richard M. Stallman
Browse files
(x_destroy_window) [SOLARIS2]: Don't free the IC or IM.
parent
ce7f6d62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/xterm.c
src/xterm.c
+4
-0
No files found.
src/xterm.c
View file @
a9978dd8
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment