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
39f79001
Commit
39f79001
authored
Mar 31, 1995
by
Karl Heuer
Browse files
(x_delete_display): Extract kboard deletion, for modularity.
parent
e50b8090
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
src/xterm.c
src/xterm.c
+1
-10
No files found.
src/xterm.c
View file @
39f79001
...
...
@@ -5811,16 +5811,7 @@ x_delete_display (dpyinfo)
#endif
#ifdef MULTI_KBOARD
if
(
--
dpyinfo
->
kboard
->
reference_count
==
0
)
{
KBOARD
**
kbp
;
for
(
kbp
=
&
all_kboards
;
*
kbp
!=
dpyinfo
->
kboard
;
kbp
=
&
(
*
kbp
)
->
next_kboard
)
if
(
*
kbp
==
NULL
)
abort
();
*
kbp
=
dpyinfo
->
kboard
->
next_kboard
;
wipe_kboard
(
dpyinfo
->
kboard
);
xfree
(
dpyinfo
->
kboard
);
}
delete_kboard
(
dpyinfo
->
kboard
);
#endif
xfree
(
dpyinfo
->
font_table
);
xfree
(
dpyinfo
->
x_id_name
);
...
...
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