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
6f209892
Commit
6f209892
authored
Jul 02, 1995
by
Richard M. Stallman
Browse files
(x_set_icon_type, x_set_icon_name): Don't ever remap the
frame window; changing the icon doesn't make it disappear.
parent
7f07d5ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
+0
-20
src/xfns.c
src/xfns.c
+0
-20
No files found.
src/xfns.c
View file @
6f209892
...
...
@@ -1474,16 +1474,6 @@ x_set_icon_type (f, arg, oldval)
error
(
"No icon window available"
);
}
/* If the window was unmapped (and its icon was mapped),
the new icon is not mapped, so map the window in its stead. */
if
(
FRAME_VISIBLE_P
(
f
))
{
#ifdef USE_X_TOOLKIT
XtPopup
(
f
->
display
.
x
->
widget
,
XtGrabNone
);
#endif
XMapWindow
(
FRAME_X_DISPLAY
(
f
),
FRAME_X_WINDOW
(
f
));
}
XFlush
(
FRAME_X_DISPLAY
(
f
));
UNBLOCK_INPUT
;
}
...
...
@@ -1537,16 +1527,6 @@ x_set_icon_name (f, arg, oldval)
error
(
"No icon window available"
);
}
/* If the window was unmapped (and its icon was mapped),
the new icon is not mapped, so map the window in its stead. */
if
(
FRAME_VISIBLE_P
(
f
))
{
#ifdef USE_X_TOOLKIT
XtPopup
(
f
->
display
.
x
->
widget
,
XtGrabNone
);
#endif
XMapWindow
(
FRAME_X_DISPLAY
(
f
),
FRAME_X_WINDOW
(
f
));
}
XFlush
(
FRAME_X_DISPLAY
(
f
));
UNBLOCK_INPUT
;
}
...
...
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