aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorMartin Rudalics2014-02-07 11:03:10 +0100
committerMartin Rudalics2014-02-07 11:03:10 +0100
commitdc0e4c48518b5154cfcec60b710da50883a671dc (patch)
tree35f04feb9c55f46061564985224ee33a9c45ad26 /src/ChangeLog
parent99f10a5dae1270696e9d65f0089985e8c89c28ab (diff)
downloademacs-dc0e4c48518b5154cfcec60b710da50883a671dc.tar.gz
emacs-dc0e4c48518b5154cfcec60b710da50883a671dc.zip
Constrain window body sizes.
* window.c (window_body_height, window_body_width): Don't return negative value.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 07a6aaaf871..99d545cf99b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,9 +1,11 @@
12014-02-07 Martin Rudalics <rudalics@gmx.at> 12014-02-07 Martin Rudalics <rudalics@gmx.at>
2 2
3 Constrain window box sizes (Bug#16649). 3 Constrain window box and body sizes (Bug#16649).
4 * xdisp.c (window_box_width): Don't return less than zero. 4 * xdisp.c (window_box_width): Don't return less than zero.
5 (window_box_left_offset, window_box_right_offset): Don't return 5 (window_box_left_offset, window_box_right_offset): Don't return
6 more than the window's pixel width. 6 more than the window's pixel width.
7 * window.c (window_body_height, window_body_width): Don't return
8 negative value.
7 9
82014-02-07 Glenn Morris <rgm@gnu.org> 102014-02-07 Glenn Morris <rgm@gnu.org>
9 11