aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0ee2dbfd53f..e89196a15c5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,26 @@
12013-01-24 Dmitry Antipov <dmantipov@yandex.ru> 12013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Drop async_visible and async_iconified fields of struct frame.
4 This is possible because async input is gone; for details, see
5 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
6 * frame.h (struct frame): Remove async_visible and async_iconified
7 members, convert garbaged to unsigned bitfield. Adjust comments.
8 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
9 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
10 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
11 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
12 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
13 * w32term.c: Ditto.
14 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
15 properly. Likewise for obscured.
16 * xterm.c: Ditto.
17 (handle_one_xevent): Save visible state go generate ICONIFY_EVENT
18 properly.
19 * nsterm.m: Ditto.
20 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
21
222013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
23
3 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested 24 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
4 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html. 25 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
5 26