summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authornicm <nicm>2014-10-22 23:18:53 +0000
committernicm <nicm>2014-10-22 23:18:53 +0000
commitabfb9656ef4404cff7847032cd4722eb0af55ee3 (patch)
tree500f13fa96ff4c1858d292b8bd95745a2d4eac3a /key-bindings.c
parent68cb1c0e6b169c6765e0d52c5319fe4354edaf09 (diff)
Fix some spacing nits.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/key-bindings.c b/key-bindings.c
index 13ba9f25..00f73d73 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -167,16 +167,16 @@ key_bindings_init(void)
RB_INIT(&key_bindings);
- cmdq = cmdq_new (NULL);
+ cmdq = cmdq_new(NULL);
for (i = 0; i < nitems(defaults); i++) {
error = cmd_string_parse(defaults[i], &cmdlist,
"<default-keys>", i, &cause);
if (error != 0)
fatalx("bad default key");
- cmdq_run (cmdq, cmdlist);
- cmd_list_free (cmdlist);
+ cmdq_run(cmdq, cmdlist);
+ cmd_list_free(cmdlist);
}
- cmdq_free (cmdq);
+ cmdq_free(cmdq);
}
void