aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2013-07-31 16:50:59 +0400
committerDmitry Antipov2013-07-31 16:50:59 +0400
commitf435830ea42db6073ed8714452dae302a3c855c5 (patch)
tree439809f2d9947708019f4be567365f80e11e5598 /src/ChangeLog
parent2412ee1af63c6cc8f4a85919cc78e59cb6ec83e3 (diff)
downloademacs-f435830ea42db6073ed8714452dae302a3c855c5.tar.gz
emacs-f435830ea42db6073ed8714452dae302a3c855c5.zip
Drop unnecessary functions that deals with frame pixel size.
* frame.h, msdos.h, w32term.h, xterm.h (x_pixel_width) (x_pixel_height): Drop prototypes. * msdos.c, nsfns.m, w32fns.c, xfns.c (x_pixel_width) (x_pixel_height): Drop implementations. * frame.c (Fframe_pixel_height): Use FRAME_PIXEL_HEIGHT which should be always valid for window frame. (Frame_pixel_width): Likewise with FRAME_PIXEL_WIDTH. * w32menu.c (Fx_popup_dialog): * xmenu.c (Fx_popup_dialog): Likewise for both.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1c4880e3356..76ef664ccd0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,18 @@
12013-07-31 Dmitry Antipov <dmantipov@yandex.ru> 12013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Drop unnecessary functions that deals with frame pixel size.
4 * frame.h, msdos.h, w32term.h, xterm.h (x_pixel_width)
5 (x_pixel_height): Drop prototypes.
6 * msdos.c, nsfns.m, w32fns.c, xfns.c (x_pixel_width)
7 (x_pixel_height): Drop implementations.
8 * frame.c (Fframe_pixel_height): Use FRAME_PIXEL_HEIGHT
9 which should be always valid for window frame.
10 (Frame_pixel_width): Likewise with FRAME_PIXEL_WIDTH.
11 * w32menu.c (Fx_popup_dialog):
12 * xmenu.c (Fx_popup_dialog): Likewise for both.
13
142013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
15
3 * frame.c (Fmake_terminal_frame): Use store_in_alist to setup 16 * frame.c (Fmake_terminal_frame): Use store_in_alist to setup
4 frame parameters and call to Fmodify_frame_parameters just once. 17 frame parameters and call to Fmodify_frame_parameters just once.
5 (Fset_frame_height, Fset_frame_width): Mention nil frame in docstring. 18 (Fset_frame_height, Fset_frame_width): Mention nil frame in docstring.