aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurélien Aptel2010-09-11 16:07:36 +0200
committerAurélien Aptel2010-09-11 16:07:36 +0200
commitb5b48395fd51adc6b8a403624fb18868830e468a (patch)
tree34e0180044f746bfcd4e69d0fe7b23afb2a94136
parenta44b133ccefd9fcff3628e58d6f6759e8525b9cc (diff)
downloadaur-b5b48395fd51adc6b8a403624fb18868830e468a.tar.gz
s/hasfocus/focus/ for consistency.
-rw-r--r--st.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/st.c b/st.c
index c9d0fb8dcd03..99ab085f173a 100644
--- a/st.c
+++ b/st.c
@@ -114,7 +114,7 @@ typedef struct {
int bufh; /* pixmap height */
int ch; /* char height */
int cw; /* char width */
- int hasfocus;
+ int focus;
int vis; /* is visible */
} XWindow;
@@ -1043,7 +1043,7 @@ tputc(char c) {
tnewline();
break;
case '\a':
- if(!xw.hasfocus)
+ if(!xw.focus)
xseturgency(1);
break;
case '\033':
@@ -1286,7 +1286,7 @@ xdrawcursor(void) {
xclear(oldx, oldy, oldx, oldy);
/* draw the new one */
- if(!(term.c.state & CURSOR_HIDE) && xw.hasfocus) {
+ if(!(term.c.state & CURSOR_HIDE) && xw.focus) {
xdraws(&g.c, g, term.c.x, term.c.y, 1);
oldx = term.c.x, oldy = term.c.y;
}
@@ -1388,7 +1388,7 @@ xseturgency(int add) {
void
focus(XEvent *ev) {
- if((xw.hasfocus = ev->type == FocusIn))
+ if((xw.focus = ev->type == FocusIn))
xseturgency(0);
draw(SCREEN_UPDATE);
}