aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorJoakim Verona2013-09-13 19:00:42 +0200
committerJoakim Verona2013-09-13 19:00:42 +0200
commit8bd2fe338b1a8f5e1b336e0dd25a3531f4f8737d (patch)
tree07c966627319319fd8b2ea9a0e887e4935dadd8f /src/ChangeLog
parent042cbea14ec32d91ccb99115f81814f508b8603b (diff)
parent97fc2468bd2cbce07205d1fc96f17220187a0f84 (diff)
downloademacs-8bd2fe338b1a8f5e1b336e0dd25a3531f4f8737d.tar.gz
emacs-8bd2fe338b1a8f5e1b336e0dd25a3531f4f8737d.zip
merge from trunk
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 57cb776038a..cc8704da2a1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,25 @@
12013-09-13 Dmitry Antipov <dmantipov@yandex.ru> 12013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Unify Fx_focus_frame between all ports.
4 * frame.h (x_focus_frame): New prototype.
5 * xfns.c (Fx_focus_frame): Remove.
6 (syms_of_xfns): Do not defsubr it.
7 (x_focus_frame): X implementation.
8 * nsfns.m (Fx_focus_frame): Remove.
9 (syms_of_nsfns): Do not defsubr it.
10 (x_focus_frame): NS implementation.
11 * w32term.c (Fx_focus_frame): Remove.
12 (x_focus_on_frame): Rename to...
13 (x_focus_frame): W32 implementation.
14 * w32term.h (x_focus_on_frame): Remove prototype.
15 * w32fns.c (Fx_focus_frame): Remove.
16 (syms_of_w32fns): Do not defsubr it.
17 * frame.c (Fx_focus_frame): Define here.
18 (syms_of_frame): Defsubr here.
19 * gtkutil.c (xg_tool_bar_callback): Use x_focus_frame.
20
212013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
22
3 Unify FRAME_window_system_DISPLAY_INFO macros between all ports. 23 Unify FRAME_window_system_DISPLAY_INFO macros between all ports.
4 All of them are replaced with FRAME_DISPLAY_INFO, defined in 24 All of them are replaced with FRAME_DISPLAY_INFO, defined in
5 each port to reference the port-specific window system data. 25 each port to reference the port-specific window system data.