diff options
| author | Dmitry Antipov | 2013-10-14 16:19:21 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-10-14 16:19:21 +0400 |
| commit | 77e3b1b7095b3376dbddd22cbca4827b797767c0 (patch) | |
| tree | 1e5cbc68a42c7e1b08acf36d94bc4b158d6117a0 /src/ChangeLog | |
| parent | e558436b778c0199caaff0ce40b9a279bacf640e (diff) | |
| download | emacs-77e3b1b7095b3376dbddd22cbca4827b797767c0.tar.gz emacs-77e3b1b7095b3376dbddd22cbca4827b797767c0.zip | |
* termhooks.h (FRAME_MUST_WRITE_SPACES, FRAME_LINE_INS_DEL_OK)
(FRAME_CHAR_INS_DEL_OK, FRAME_SCROLL_REGION_OK)
(FRAME_SCROLL_REGION_COST, FRAME_MEMORY_BELOW_FRAME):
Adjust to match the change described below.
(struct terminal): Move must_write_spaces, line_ins_del_ok,
char_ins_del_ok, scroll_region_ok, scroll_region_cost and
memory_below_frame members to...
* termchar.h (struct tty_display_info): ...here because they're
relevant only on TTYs. Prefer unsigned bitfield where appropriate.
* term.c (init_tty):
* nsterm.m (ns_create_terminal):
* w32term.c (w32_create_terminal):
* xterm.c (x_create_terminal): Adjust users.
* dispnew.c (line_hash_code, line_draw_cost): Pass frame arg
to filter out non-TTY frames. Adjust comment.
(scrolling): Adjust user. Prefer eassert for debugging check.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9432c81ffd7..d9264f6a691 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,24 @@ | |||
| 1 | 2013-10-14 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-10-14 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | * termhooks.h (FRAME_MUST_WRITE_SPACES, FRAME_LINE_INS_DEL_OK) | ||
| 4 | (FRAME_CHAR_INS_DEL_OK, FRAME_SCROLL_REGION_OK) | ||
| 5 | (FRAME_SCROLL_REGION_COST, FRAME_MEMORY_BELOW_FRAME): | ||
| 6 | Adjust to match the change described below. | ||
| 7 | (struct terminal): Move must_write_spaces, line_ins_del_ok, | ||
| 8 | char_ins_del_ok, scroll_region_ok, scroll_region_cost and | ||
| 9 | memory_below_frame members to... | ||
| 10 | * termchar.h (struct tty_display_info): ...here because they're | ||
| 11 | relevant only on TTYs. Prefer unsigned bitfield where appropriate. | ||
| 12 | * term.c (init_tty): | ||
| 13 | * nsterm.m (ns_create_terminal): | ||
| 14 | * w32term.c (w32_create_terminal): | ||
| 15 | * xterm.c (x_create_terminal): Adjust users. | ||
| 16 | * dispnew.c (line_hash_code, line_draw_cost): Pass frame arg | ||
| 17 | to filter out non-TTY frames. Adjust comment. | ||
| 18 | (scrolling): Adjust user. Prefer eassert for debugging check. | ||
| 19 | |||
| 20 | 2013-10-14 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 21 | |||
| 3 | * xfaces.c (PT_PER_INCH): Remove unused macro. | 22 | * xfaces.c (PT_PER_INCH): Remove unused macro. |
| 4 | * termhooks.h (struct terminal): Remove set-but-unused | 23 | * termhooks.h (struct terminal): Remove set-but-unused |
| 5 | member fast_clear_end_of_line. | 24 | member fast_clear_end_of_line. |