diff options
| author | Dmitry Antipov | 2013-08-23 08:03:25 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-08-23 08:03:25 +0400 |
| commit | 9997ec56be8bf3fb32ac246e5b654ed735ee2c52 (patch) | |
| tree | 9005d22fa77dfbf0799c83e094bf510fc877af58 /src/ChangeLog | |
| parent | 7f780da621d462afa3c6e0374590a86de513f863 (diff) | |
| download | emacs-9997ec56be8bf3fb32ac246e5b654ed735ee2c52.tar.gz emacs-9997ec56be8bf3fb32ac246e5b654ed735ee2c52.zip | |
Minor cleanup for redisplay interface and few related functions.
* frame.h (enum text_cursor_kinds): Move from here...
* dispextern.h (enum text_cursor_kinds): ...to here.
(toplevel): Drop unnecessary declarations.
(struct redisplay_interface): Use bool and enum text_cursor_kinds
in update_window_end_hook and draw_window_cursor functions.
(display_and_set_cursor, x_update_cursor): Adjust prototypes.
* nsterm.m (ns_update_window_end, ns_draw_window_cursor):
* w32term.c (x_update_window_end,w32_draw_window_cursor):
* xterm.c (x_update_window_end, x_draw_window_cursor):
* xdisp.c (display_and_set_cursor, update_window_cursor)
(update_cursor_in_window_tree, x_update_cursor): Use bool and
enum text_cursor_kinds where appropriate.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index aadaae24e98..e252e4a2f4f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,21 @@ | |||
| 1 | 2013-08-23 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-08-23 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | Minor cleanup for redisplay interface and few related functions. | ||
| 4 | * frame.h (enum text_cursor_kinds): Move from here... | ||
| 5 | * dispextern.h (enum text_cursor_kinds): ...to here. | ||
| 6 | (toplevel): Drop unnecessary declarations. | ||
| 7 | (struct redisplay_interface): Use bool and enum text_cursor_kinds | ||
| 8 | in update_window_end_hook and draw_window_cursor functions. | ||
| 9 | (display_and_set_cursor, x_update_cursor): Adjust prototypes. | ||
| 10 | * nsterm.m (ns_update_window_end, ns_draw_window_cursor): | ||
| 11 | * w32term.c (x_update_window_end,w32_draw_window_cursor): | ||
| 12 | * xterm.c (x_update_window_end, x_draw_window_cursor): | ||
| 13 | * xdisp.c (display_and_set_cursor, update_window_cursor) | ||
| 14 | (update_cursor_in_window_tree, x_update_cursor): Use bool and | ||
| 15 | enum text_cursor_kinds where appropriate. | ||
| 16 | |||
| 17 | 2013-08-23 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 18 | |||
| 3 | Redesign redisplay interface to drop updated_row and updated_area. | 19 | Redesign redisplay interface to drop updated_row and updated_area. |
| 4 | * dispextern.h (updated_row, updated_area): Remove declaration. | 20 | * dispextern.h (updated_row, updated_area): Remove declaration. |
| 5 | (struct redisplay_interface): Pass glyph row and row area parameters | 21 | (struct redisplay_interface): Pass glyph row and row area parameters |