diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-13 22:43:30 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-13 22:43:30 +0200 |
commit | b0672d093221133dd58c01ca5498ebf9ebb29ee5 (patch) | |
tree | 06ea70551a345da0058d5e6247def72aa4e5f274 | |
parent | 2bbe19f9d5fa9e57483cf6c78ba2338e2670dc52 (diff) | |
download | st-b0672d093221133dd58c01ca5498ebf9ebb29ee5.tar.gz st-b0672d093221133dd58c01ca5498ebf9ebb29ee5.tar.bz2 |
renamed a function.
-rw-r--r-- | st.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; |