ixtermclear() is now done by xdrawglyphfontspecs() - st - Simple Terminal Err gopher.r-36.net 70 i Err gopher.r-36.net 70 1Log /scm/st//log.gph gopher.r-36.net 70 1Files /scm/st//files.gph gopher.r-36.net 70 1Refs /scm/st//refs.gph gopher.r-36.net 70 1README /scm/st//file/README.gph gopher.r-36.net 70 1LICENSE /scm/st//file/LICENSE.gph gopher.r-36.net 70 i--- Err gopher.r-36.net 70 1commit 30440295bc054f37a2a8275acca769cd83bcb780 /scm/st//commit/30440295bc054f37a2a8275acca769cd83bcb780.gph gopher.r-36.net 70 1parent 4fdba860c8db70035e9749806ecc6ca2d7c418d0 /scm/st//commit/4fdba860c8db70035e9749806ecc6ca2d7c418d0.gph gopher.r-36.net 70 hAuthor: Christoph Lohmann <20h@r-36.net> URL:mailto:20h@r-36.net gopher.r-36.net 70 iDate: Mon, 7 Mar 2016 14:33:05 +0100 Err gopher.r-36.net 70 i Err gopher.r-36.net 70 ixtermclear() is now done by xdrawglyphfontspecs() Err gopher.r-36.net 70 i Err gopher.r-36.net 70 iThanks Ton van den Heuvel for the proposal! Err gopher.r-36.net 70 i Err gopher.r-36.net 70 iDiffstat: Err gopher.r-36.net 70 i st.c | 13 ------------- Err gopher.r-36.net 70 i Err gopher.r-36.net 70 i1 file changed, 0 insertions(+), 13 deletions(-) Err gopher.r-36.net 70 i--- Err gopher.r-36.net 70 1diff --git a/st.c b/st.c /scm/st//file/st.c.gph gopher.r-36.net 70 i@@ -439,7 +439,6 @@ static void xresettitle(void); Err gopher.r-36.net 70 i static void xsetpointermotion(int); Err gopher.r-36.net 70 i static void xseturgency(int); Err gopher.r-36.net 70 i static void xsetsel(char *, Time); Err gopher.r-36.net 70 i-static void xtermclear(int, int, int, int); Err gopher.r-36.net 70 i static void xunloadfont(Font *); Err gopher.r-36.net 70 i static void xunloadfonts(void); Err gopher.r-36.net 70 i static void xresize(int, int); Err gopher.r-36.net 70 i@@ -3213,17 +3212,6 @@ xsetcolorname(int x, const char *name) Err gopher.r-36.net 70 i return 0; Err gopher.r-36.net 70 i } Err gopher.r-36.net 70 i Err gopher.r-36.net 70 i-void Err gopher.r-36.net 70 i-xtermclear(int col1, int row1, int col2, int row2) Err gopher.r-36.net 70 i-{ Err gopher.r-36.net 70 i- XftDrawRect(xw.draw, Err gopher.r-36.net 70 i- &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg], Err gopher.r-36.net 70 i- borderpx + col1 * xw.cw, Err gopher.r-36.net 70 i- borderpx + row1 * xw.ch, Err gopher.r-36.net 70 i- (col2-col1+1) * xw.cw, Err gopher.r-36.net 70 i- (row2-row1+1) * xw.ch); Err gopher.r-36.net 70 i-} Err gopher.r-36.net 70 i- Err gopher.r-36.net 70 i /* Err gopher.r-36.net 70 i * Absolute coordinates. Err gopher.r-36.net 70 i */ Err gopher.r-36.net 70 i@@ -3983,7 +3971,6 @@ drawregion(int x1, int y1, int x2, int y2) Err gopher.r-36.net 70 i if (!term.dirty[y]) Err gopher.r-36.net 70 i continue; Err gopher.r-36.net 70 i Err gopher.r-36.net 70 i- xtermclear(0, y, term.col, y); Err gopher.r-36.net 70 i term.dirty[y] = 0; Err gopher.r-36.net 70 i Err gopher.r-36.net 70 i specs = term.specbuf; Err gopher.r-36.net 70 .