tMerging xft and current st heads. - st - [fork] customized build of st, the simple terminal
(HTM) git clone git://src.adamsgaard.dk/st
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 21a0c4a2e08ede1d04c472497db7d9aef644d00c
(DIR) parent 2b3c1219c863d9faa30ae58e5bf56d58ada0247d
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Mon, 24 Sep 2012 10:24:36 +0200
Merging xft and current st heads.
Diffstat:
M st.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/st.c b/st.c
t@@ -201,7 +201,7 @@ typedef struct {
XftDraw *xft_draw;
Visual *vis;
int scr;
- Bool isfixed; /* is fixed geometry? */
+ bool isfixed; /* is fixed geometry? */
int fx, fy, fw, fh; /* fixed geometry */
int tw, th; /* tty width and height */
int w; /* window width */
t@@ -940,7 +940,7 @@ tcursor(int mode) {
void
treset(void) {
- unsigned i;
+ uint i;
term.c = (TCursor){{
.mode = ATTR_NULL,
.fg = DefaultFG,
t@@ -1603,7 +1603,7 @@ strreset(void) {
void
tputtab(bool forward) {
- unsigned x = term.c.x;
+ uint x = term.c.x;
if(forward) {
if(x == term.col)
t@@ -2381,7 +2381,7 @@ run(void) {
int
main(int argc, char *argv[]) {
int i, bitm, xr, yr;
- unsigned int wr, hr;
+ uint wr, hr;
xw.fw = xw.fh = xw.fx = xw.fy = 0;
xw.isfixed = False;