diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
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 @@ | |||
| 1 | 2013-12-04 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * xterm.c (XTflash): Fix coordinate of bottom area to flash | ||
| 4 | (Bug#16044). | ||
| 5 | |||
| 1 | 2013-12-04 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2013-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. */ |