|
@@ -439,7 +439,6 @@ static void xresettitle(void);
|
|
static void xsetpointermotion(int);
|
|
static void xsetpointermotion(int);
|
|
static void xseturgency(int);
|
|
static void xseturgency(int);
|
|
static void xsetsel(char *, Time);
|
|
static void xsetsel(char *, Time);
|
|
-static void xtermclear(int, int, int, int);
|
|
|
|
static void xunloadfont(Font *);
|
|
static void xunloadfont(Font *);
|
|
static void xunloadfonts(void);
|
|
static void xunloadfonts(void);
|
|
static void xresize(int, int);
|
|
static void xresize(int, int);
|
|
@@ -3213,17 +3212,6 @@ xsetcolorname(int x, const char *name)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-void
|
|
|
|
-xtermclear(int col1, int row1, int col2, int row2)
|
|
|
|
-{
|
|
|
|
- XftDrawRect(xw.draw,
|
|
|
|
- &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
|
|
|
|
- borderpx + col1 * xw.cw,
|
|
|
|
- borderpx + row1 * xw.ch,
|
|
|
|
- (col2-col1+1) * xw.cw,
|
|
|
|
- (row2-row1+1) * xw.ch);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
/*
|
|
/*
|
|
* Absolute coordinates.
|
|
* Absolute coordinates.
|
|
*/
|
|
*/
|
|
@@ -3983,7 +3971,6 @@ drawregion(int x1, int y1, int x2, int y2)
|
|
if (!term.dirty[y])
|
|
if (!term.dirty[y])
|
|
continue;
|
|
continue;
|
|
|
|
|
|
- xtermclear(0, y, term.col, y);
|
|
|
|
term.dirty[y] = 0;
|
|
term.dirty[y] = 0;
|
|
|
|
|
|
specs = term.specbuf;
|
|
specs = term.specbuf;
|