diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2012-11-23 19:39:48 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2012-11-23 19:39:48 +0400 |
commit | f418b22ee985bb6887c45856a1cabe2f5c726fca (patch) | |
tree | 51417635f4321a34ffb460c8266866ec87f5a94c /src/frame.h | |
parent | e7d0e5ee247a155a268ffbf80bedbe25e15b5032 (diff) |
* frame.h (struct frame): Remove display_preempted member
since all users are dead long ago.
* nsterm.h (struct x_output): Use the only dummy member.
* w32menu.c (pending_menu_activation): Remove since not
really used.
(set_frame_menubar): Adjust user.
* w32term.h (struct x_output): Drop outdated #if 0 code.
(struct w32_output): Use bitfields for explicit_parent,
asked_for_visible and menubar_active members. Drop
unused pending_menu_activation member.
* xterm.h (struct x_output): Drop outdated #if 0 code.
Use bitfields for explicit_parent, asked_for_visible,
has_been_visible and net_wm_state_hidden_seen members.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/frame.h b/src/frame.h index 87c4fcb055..5ebfc2f7ec 100644 --- a/src/frame.h +++ b/src/frame.h @@ -357,9 +357,6 @@ struct frame unsigned int external_menu_bar : 1; #endif - /* Nonzero if last attempt at redisplay on this frame was preempted. */ - unsigned display_preempted : 1; - /* visible is nonzero if the frame is currently displayed; we check it to see if we should bother updating the frame's contents. DON'T SET IT DIRECTLY; instead, use FRAME_SET_VISIBLE. |