]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_setup_relief_color): Don't try smart color allocation
authorGerd Moellmann <gerd@gnu.org>
Tue, 27 Jul 1999 00:02:50 +0000 (00:02 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 27 Jul 1999 00:02:50 +0000 (00:02 +0000)
if display is mono.
(x_draw_row_bitmaps): If face has stipple, don't switch
to foreground color for clearing areas, and set the fill style.

src/xterm.c

index 8e4ed0407ac4989faf010473c4e657a8c635375d..59a04fd5ea23737af5f34e687a849cb681b10238 100644 (file)
@@ -2376,9 +2376,7 @@ x_get_glyph_string_clip_rect (s, r)
            r->x -= width;
        }
       
-      /* If row should not extend over internal borders, adjust x.  */
-      if (!s->row->internal_border_p)
-       r->x += FRAME_INTERNAL_BORDER_WIDTH (s->f);
+      r->x += FRAME_INTERNAL_BORDER_WIDTH (s->f);
       
       /* Unless displaying a mode or menu bar line, which are always
         fully visible, clip to the visible part of the row.  */
@@ -4266,13 +4264,8 @@ x_draw_glyphs (w, x, row, area, start, end, hl, real_start, real_end)
            x -= width;
        }
 
-      /* If row should extend over internal borders, adjust x and
-         width accordingly.  */
-      if (!row->internal_border_p)
-       {
-         x += FRAME_INTERNAL_BORDER_WIDTH (f);
-         last_x -= FRAME_INTERNAL_BORDER_WIDTH (f);
-       }
+      x += FRAME_INTERNAL_BORDER_WIDTH (f);
+      last_x -= FRAME_INTERNAL_BORDER_WIDTH (f);
     }
   else
     {