mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 12:57:34 +00:00
(expose_window): Don't fix overlaps for mode lines.
This commit is contained in:
parent
48e029b6a8
commit
83e2a07aa0
1 changed files with 3 additions and 1 deletions
|
|
@ -22090,7 +22090,9 @@ expose_window (w, fr)
|
|||
|| (r.y >= y0 && r.y < y1)
|
||||
|| (r.y + r.height > y0 && r.y + r.height < y1))
|
||||
{
|
||||
if (row->overlapping_p)
|
||||
/* A header line may be overlapping, but there is no need
|
||||
to fix overlapping areas for them. KFS 2005-02-12 */
|
||||
if (row->overlapping_p && !row->mode_line_p)
|
||||
{
|
||||
if (first_overlapping_row == NULL)
|
||||
first_overlapping_row = row;
|
||||
|
|
|
|||
Loading…
Reference in a new issue