aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornicm <nicm>2015-12-08 08:14:04 +0000
committernicm <nicm>2015-12-08 08:14:04 +0000
commit8f671d3eefa0af67b9e753eeae032e3ded6ffd00 (patch)
tree9ad8085f5fcfae435ee6735506677e817a43d5a3
parent1f94274b92b9b367887196755bdd3a848b3b847a (diff)
downloadrtmux-8f671d3eefa0af67b9e753eeae032e3ded6ffd00.tar.gz
rtmux-8f671d3eefa0af67b9e753eeae032e3ded6ffd00.tar.bz2
rtmux-8f671d3eefa0af67b9e753eeae032e3ded6ffd00.zip
Spacing nits.
-rw-r--r--options.c2
-rw-r--r--tmux.h10
2 files changed, 7 insertions, 5 deletions
diff --git a/options.c b/options.c
index c355f9ce..5f958d23 100644
--- a/options.c
+++ b/options.c
@@ -47,7 +47,7 @@ options_cmp(struct options_entry *o1, struct options_entry *o2)
struct options *
options_create(struct options *parent)
{
- struct options *oo;
+ struct options *oo;
oo = xcalloc(1, sizeof *oo);
RB_INIT(&oo->tree);
diff --git a/tmux.h b/tmux.h
index fa589f57..7757f12f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -693,10 +693,12 @@ struct grid {
/* Hook data structures. */
struct hook {
- const char *name;
- struct cmd_q *cmdq;
- struct cmd_list *cmdlist;
- RB_ENTRY(hook) entry;
+ const char *name;
+
+ struct cmd_q *cmdq;
+ struct cmd_list *cmdlist;
+
+ RB_ENTRY(hook) entry;
};
/* Option data structures. */