diff options
| author | Dmitry Antipov | 2012-08-31 08:14:59 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-08-31 08:14:59 +0400 |
| commit | 8b96a52c54fe4d37e02153be8fd551b0a676d151 (patch) | |
| tree | 69327127a4e8299f4c4ff594011274cc1bb9c289 /src | |
| parent | e1991423c66ab95eb44721bec4415669780fee3b (diff) | |
| download | emacs-8b96a52c54fe4d37e02153be8fd551b0a676d151.tar.gz emacs-8b96a52c54fe4d37e02153be8fd551b0a676d151.zip | |
Remove unused member of struct x_output and struct w32_output.
* xterm.h (struct x_output): Remove unused field 'needs_exposure'.
* w32term.h (struct w32_output): Likewise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/w32term.h | 3 | ||||
| -rw-r--r-- | src/xterm.h | 3 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 261fa80d718..7f47697da87 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | Remove unused member of struct x_output and struct w32_output. | ||
| 4 | * xterm.h (struct x_output): Remove unused field 'needs_exposure'. | ||
| 5 | * w32term.h (struct w32_output): Likewise. | ||
| 6 | |||
| 1 | 2012-08-30 Jan Djärv <jan.h.d@swipnet.se> | 7 | 2012-08-30 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 8 | ||
| 3 | * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it | 9 | * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it |
diff --git a/src/w32term.h b/src/w32term.h index ccbf3c42c0e..6fc2beeb18c 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -302,9 +302,6 @@ struct w32_output | |||
| 302 | /* Non-hourglass cursor that is currently active. */ | 302 | /* Non-hourglass cursor that is currently active. */ |
| 303 | Cursor current_cursor; | 303 | Cursor current_cursor; |
| 304 | 304 | ||
| 305 | /* Flag to set when the window needs to be completely repainted. */ | ||
| 306 | int needs_exposure; | ||
| 307 | |||
| 308 | DWORD dwStyle; | 305 | DWORD dwStyle; |
| 309 | 306 | ||
| 310 | /* This is the Emacs structure for the display this frame is on. */ | 307 | /* This is the Emacs structure for the display this frame is on. */ |
diff --git a/src/xterm.h b/src/xterm.h index 86a76fd81a9..007c92b929c 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -544,9 +544,6 @@ struct x_output | |||
| 544 | /* Non-zero means hourglass cursor is currently displayed. */ | 544 | /* Non-zero means hourglass cursor is currently displayed. */ |
| 545 | unsigned hourglass_p : 1; | 545 | unsigned hourglass_p : 1; |
| 546 | 546 | ||
| 547 | /* Flag to set when the X window needs to be completely repainted. */ | ||
| 548 | int needs_exposure; | ||
| 549 | |||
| 550 | /* These are the current window manager hints. It seems that | 547 | /* These are the current window manager hints. It seems that |
| 551 | XSetWMHints, when presented with an unset bit in the `flags' | 548 | XSetWMHints, when presented with an unset bit in the `flags' |
| 552 | member of the hints structure, does not leave the corresponding | 549 | member of the hints structure, does not leave the corresponding |