aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Rudalics2013-12-04 15:11:33 +0100
committerMartin Rudalics2013-12-04 15:11:33 +0100
commit2db4a1b6341b756b73fbdd996b3f6b119360ac99 (patch)
tree488ad5a416081f902f4547b2cc82d1269cbadb7b /src
parent81961e4cea57cd7b57b263ed0a570737c24d6f97 (diff)
downloademacs-2db4a1b6341b756b73fbdd996b3f6b119360ac99.tar.gz
emacs-2db4a1b6341b756b73fbdd996b3f6b119360ac99.zip
In XTflash fix coordinate of bottom area to flash (Bug#16044).
* xterm.c (XTflash): Fix coordinate of bottom area to flash (Bug#16044).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xterm.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f67c02093ce..a877bc885e7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12013-12-04 Martin Rudalics <rudalics@gmx.at>
2
3 * xterm.c (XTflash): Fix coordinate of bottom area to flash
4 (Bug#16044).
5
12013-12-04 Dmitry Antipov <dmantipov@yandex.ru> 62013-12-04 Dmitry Antipov <dmantipov@yandex.ru>
2 7
3 * font.c (font_list_entities): Remove dummy assignment. 8 * font.c (font_list_entities): Remove dummy assignment.
diff --git a/src/xterm.c b/src/xterm.c
index a77279849d3..0dbc4ac1c74 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -2920,7 +2920,7 @@ XTflash (struct frame *f)
2920#endif 2920#endif
2921 { 2921 {
2922 /* Get the height not including a menu bar widget. */ 2922 /* Get the height not including a menu bar widget. */
2923 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f)); 2923 int height = FRAME_PIXEL_HEIGHT (f);
2924 /* Height of each line to flash. */ 2924 /* Height of each line to flash. */
2925 int flash_height = FRAME_LINE_HEIGHT (f); 2925 int flash_height = FRAME_LINE_HEIGHT (f);
2926 /* These will be the left and right margins of the rectangles. */ 2926 /* These will be the left and right margins of the rectangles. */