comparison src/xdisp.c @ 57313:6fd660640e42

(x_draw_vertical_border): Do not draw line if frame has scroll bars.
author Kim F. Storm <storm@cua.dk>
date Mon, 04 Oct 2004 13:57:31 +0000
parents faf11ac7a9f5
children 1caa36568da6 d83f49cefda3
comparison
equal deleted inserted replaced
57312:9c9d96da850a 57313:6fd660640e42
21629 21629
21630 /* Redraw borders between horizontally adjacent windows. Don't 21630 /* Redraw borders between horizontally adjacent windows. Don't
21631 do it for frames with vertical scroll bars because either the 21631 do it for frames with vertical scroll bars because either the
21632 right scroll bar of a window, or the left scroll bar of its 21632 right scroll bar of a window, or the left scroll bar of its
21633 neighbor will suffice as a border. */ 21633 neighbor will suffice as a border. */
21634 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w->frame)))
21635 return;
21636
21634 if (!WINDOW_RIGHTMOST_P (w) 21637 if (!WINDOW_RIGHTMOST_P (w)
21635 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)) 21638 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
21636 { 21639 {
21637 int x0, x1, y0, y1; 21640 int x0, x1, y0, y1;
21638 21641