X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=st.c;h=deddb0d2c2e76faa9c4538a1f98b941fa0b1dd3d;hb=d2f157c7418e2762316e5471f819ec1e5c49e93c;hp=5715f0fc0d675c4a234f01792bc22476b5f1518d;hpb=10e49a0505a250fc78c41842d93eb2a0abaf4c93;p=st.git diff --git a/st.c b/st.c index 5715f0f..deddb0d 100644 --- a/st.c +++ b/st.c @@ -157,6 +157,7 @@ static void ttywrite(const char *, size_t); 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 @@ tresize(int col, int row) { } void -tloadcols(void) { +xloadcols(void) { int i, r, g, b; XColor color; Colormap cmap = DefaultColormap(xw.dis, xw.scr); @@ -1115,7 +1116,7 @@ xinit(void) { xw.ch = dc.font->ascent + dc.font->descent; /* colors */ - tloadcols(); + xloadcols(); term.c.attr.fg = DefaultFG; term.c.attr.bg = DefaultBG;