diff options
| author | Dmitry Antipov | 2013-09-17 12:24:20 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-09-17 12:24:20 +0400 |
| commit | baed360360debdbe4926f69be41108890f394540 (patch) | |
| tree | 5452b4f585c89b3cb8fa0f84a2b74b5c046bfa7b /src/w32term.h | |
| parent | f804aa63be2f551aed486587fefa86b87bd50745 (diff) | |
| download | emacs-baed360360debdbe4926f69be41108890f394540.tar.gz emacs-baed360360debdbe4926f69be41108890f394540.zip | |
* xterm.h (struct x_display_info): New member
x_pending_autoraise_frame, going to replace...
* xterm.c (pending_autoraise_frame): ...static variable.
(x_new_focus_frame, XTread_socket): Adjust users.
* w32term.h (struct w32_display_info): New member
w32_pending_autoraise_frame, going to replace...
* w32term.c (pending_autoraise_frame): ...global variable.
(x_new_focus_frame, w32_read_socket): Adjust users.
Diffstat (limited to 'src/w32term.h')
| -rw-r--r-- | src/w32term.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/w32term.h b/src/w32term.h index 1cbadadc84e..99253627e64 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -179,6 +179,9 @@ struct w32_display_info | |||
| 179 | frame. It differs from w32_focus_frame when we're using a global | 179 | frame. It differs from w32_focus_frame when we're using a global |
| 180 | minibuffer. */ | 180 | minibuffer. */ |
| 181 | struct frame *x_highlight_frame; | 181 | struct frame *x_highlight_frame; |
| 182 | |||
| 183 | /* The frame waiting to be auto-raised in w32_read_socket. */ | ||
| 184 | struct frame *w32_pending_autoraise_frame; | ||
| 182 | }; | 185 | }; |
| 183 | 186 | ||
| 184 | /* This is a chain of structures for all the displays currently in use. */ | 187 | /* This is a chain of structures for all the displays currently in use. */ |