aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2012-11-02 14:34:26 +0400
committerDmitry Antipov2012-11-02 14:34:26 +0400
commitb9e9df47f2886bb4b6b67aea8eeb0b015258a063 (patch)
tree0223e720b05e2fe607708a1658d0cbbd14f05e8f /src/ChangeLog
parentc574bc3409143d0eb3aea1fe3161fac28de7e366 (diff)
downloademacs-b9e9df47f2886bb4b6b67aea8eeb0b015258a063.tar.gz
emacs-b9e9df47f2886bb4b6b67aea8eeb0b015258a063.zip
Window-related stuff cleanup here and there.
* dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p): Use decode_any_window. * fringe.c (Ffringe_bitmaps_at_pos): Likewise. * xdisp.c (Fformat_mode_line): Likewise. * font.c (Ffont_at): Use decode_live_window. * indent.c (Fcompute_motion, Fvertical_motion): Likewise. * window.c (decode_next_window_args): Likewise. (decode_any_window): Remove static. * window.h (decode_any_window): Add prototype. * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here... * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P, respectively.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index bcbc455dba6..25cb1e76fa5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,21 @@
12012-11-02 Dmitry Antipov <dmantipov@yandex.ru> 12012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Window-related stuff cleanup here and there.
4 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
5 Use decode_any_window.
6 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
7 * xdisp.c (Fformat_mode_line): Likewise.
8 * font.c (Ffont_at): Use decode_live_window.
9 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
10 * window.c (decode_next_window_args): Likewise.
11 (decode_any_window): Remove static.
12 * window.h (decode_any_window): Add prototype.
13 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
14 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
15 respectively.
16
172012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
18
3 Remove pad from struct input_event. 19 Remove pad from struct input_event.
4 * termhooks.h (struct input_event): Remove padding field. 20 * termhooks.h (struct input_event): Remove padding field.
5 Adjust comment. 21 Adjust comment.