ts/hasfocus/focus/ for consistency. - 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 6faedce53a8de8a81da1ba045ffbc2b7603128cd
(DIR) parent ab7037cb33b4be4d16e3197d907066ed5b8ab16b
(HTM) Author: Aurélien Aptel <aurelien.aptel@gmail.com>
Date: Sat, 11 Sep 2010 16:07:36 +0200
s/hasfocus/focus/ for consistency.
Diffstat:
M st.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/st.c b/st.c
t@@ -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;
t@@ -1043,7 +1043,7 @@ tputc(char c) {
tnewline();
break;
case '\a':
- if(!xw.hasfocus)
+ if(!xw.focus)
xseturgency(1);
break;
case '\033':
t@@ -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;
}
t@@ -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);
}