aboutsummaryrefslogtreecommitdiff
path: root/key-bindings.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2014-10-29 12:50:05 +0000
committerThomas Adam <thomas@xteddy.org>2014-10-29 12:51:21 +0000
commit35ffd093d724053046ae49984af0beb0530e5560 (patch)
treed5b89a213621dc56b852fc7eb8a1daba12046830 /key-bindings.c
parent201036ad80f2e51f7238db2adf05914a4a4f5819 (diff)
parent10a9440055ccdda5788965bcb048207eab2a0548 (diff)
downloadrtmux-35ffd093d724053046ae49984af0beb0530e5560.tar.gz
rtmux-35ffd093d724053046ae49984af0beb0530e5560.tar.bz2
rtmux-35ffd093d724053046ae49984af0beb0530e5560.zip
Merge branch 'obsd-master'
Conflicts: Makefile cmd-link-window.c cmd-unlink-window.c
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 0413e2be..4ea40a1f 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