all repos — st @ d2f157c7418e2762316e5471f819ec1e5c49e93c

st (suckless terminal) config

renamed a function.
Aurélien Aptel aurelien.aptel@gmail.com
commit

d2f157c7418e2762316e5471f819ec1e5c49e93c

parent

10e49a0505a250fc78c41842d93eb2a0abaf4c93

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M st.cst.c

@@ -157,6 +157,7 @@

static void xclear(int, int, int, int); static void xcursor(int); static void xinit(void); +static void xloadcols(void); static void expose(XEvent *); static char* kmap(KeySym);

@@ -1035,7 +1036,7 @@ term.col = col, term.row = row;

} void -tloadcols(void) { +xloadcols(void) { int i, r, g, b; XColor color; Colormap cmap = DefaultColormap(xw.dis, xw.scr);

@@ -1115,7 +1116,7 @@ xw.cw = dc.font->max_bounds.rbearing - dc.font->min_bounds.lbearing;

xw.ch = dc.font->ascent + dc.font->descent; /* colors */ - tloadcols(); + xloadcols(); term.c.attr.fg = DefaultFG; term.c.attr.bg = DefaultBG;