aboutsummaryrefslogtreecommitdiffstats
path: root/menu.c
diff options
context:
space:
mode:
authorokan2014-09-07 19:27:30 +0000
committerokan2014-09-07 19:27:30 +0000
commiteab7846097604d0bfc81f122685219fe7a738415 (patch)
tree6630de258aa2ebc267a9f79e9eeb32ca8d7e7ca5 /menu.c
parent6ad47ab7a1880d92f7b8b36722a424dd841025eb (diff)
downloadcwm-eab7846097604d0bfc81f122685219fe7a738415.tar.gz
more style nits
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/menu.c b/menu.c
index a144336..450fa4d 100644
--- a/menu.c
+++ b/menu.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: menu.c,v 1.76 2014/09/06 16:18:08 okan Exp $
+ * $OpenBSD: menu.c,v 1.77 2014/09/07 19:27:30 okan Exp $
*/
#include <sys/param.h>
@@ -126,7 +126,7 @@ menu_filter(struct screen_ctx *sc, struct menu_q *menuq, const char *prompt,
if (xu_ptr_grab(sc->menuwin, MENUGRABMASK,
Conf.cursor[CF_QUESTION]) < 0) {
XUnmapWindow(X_Dpy, sc->menuwin);
- return (NULL);
+ return(NULL);
}
XGetInputFocus(X_Dpy, &focuswin, &focusrevert);
@@ -180,7 +180,7 @@ out:
XUnmapWindow(X_Dpy, sc->menuwin);
XUngrabKeyboard(X_Dpy, CurrentTime);
- return (mi);
+ return(mi);
}
static struct menu *
@@ -210,7 +210,7 @@ menu_complete_path(struct menu_ctx *mc)
else if (!mr->abort)
strlcpy(mr->text, mc->searchstr, sizeof(mr->text));
free(path);
- return (mr);
+ return(mr);
}
static struct menu *
@@ -225,7 +225,7 @@ menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq,
wchar_t wc;
if (menu_keycode(&e->xkey, &ctl, chr) < 0)
- return (NULL);
+ return(NULL);
switch (ctl) {
case CTL_ERASEONE:
@@ -266,7 +266,7 @@ menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq,
mi->dummy = 1;
}
mi->abort = 0;
- return (mi);
+ return(mi);
case CTL_WIPE:
mc->searchstr[0] = '\0';
mc->changed = 1;
@@ -281,7 +281,7 @@ menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq,
if ((mc->flags & CWM_MENU_FILE) &&
(strncmp(mc->searchstr, mi->text,
strlen(mi->text))) == 0)
- return (menu_complete_path(mc));
+ return(menu_complete_path(mc));
/*
* Put common prefix of the results into searchstr
@@ -306,7 +306,7 @@ menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq,
mi->text[0] = '\0';
mi->dummy = 1;
mi->abort = 1;
- return (mi);
+ return(mi);
default:
break;
}
@@ -329,7 +329,7 @@ menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq,
mc->listing = 0;
}
- return (NULL);
+ return(NULL);
}
static void
@@ -497,7 +497,7 @@ menu_handle_release(XEvent *e, struct menu_ctx *mc, struct menu_q *resultq)
mi->text[0] = '\0';
mi->dummy = 1;
}
- return (mi);
+ return(mi);
}
static int
@@ -517,7 +517,7 @@ menu_calc_entry(struct menu_ctx *mc, int x, int y)
if (mc->hasprompt && entry == 0)
entry = -1;
- return (entry);
+ return(entry);
}
static int
@@ -597,12 +597,12 @@ menu_keycode(XKeyEvent *ev, enum ctltype *ctl, char *chr)
}
if (*ctl != CTL_NONE)
- return (0);
+ return(0);
if (XLookupString(ev, chr, 32, &ks, NULL) < 0)
- return (-1);
+ return(-1);
- return (0);
+ return(0);
}
void