mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Spacing nits.
This commit is contained in:
parent
1f94274b92
commit
8f671d3eef
@ -47,7 +47,7 @@ options_cmp(struct options_entry *o1, struct options_entry *o2)
|
|||||||
struct options *
|
struct options *
|
||||||
options_create(struct options *parent)
|
options_create(struct options *parent)
|
||||||
{
|
{
|
||||||
struct options *oo;
|
struct options *oo;
|
||||||
|
|
||||||
oo = xcalloc(1, sizeof *oo);
|
oo = xcalloc(1, sizeof *oo);
|
||||||
RB_INIT(&oo->tree);
|
RB_INIT(&oo->tree);
|
||||||
|
10
tmux.h
10
tmux.h
@ -693,10 +693,12 @@ struct grid {
|
|||||||
|
|
||||||
/* Hook data structures. */
|
/* Hook data structures. */
|
||||||
struct hook {
|
struct hook {
|
||||||
const char *name;
|
const char *name;
|
||||||
struct cmd_q *cmdq;
|
|
||||||
struct cmd_list *cmdlist;
|
struct cmd_q *cmdq;
|
||||||
RB_ENTRY(hook) entry;
|
struct cmd_list *cmdlist;
|
||||||
|
|
||||||
|
RB_ENTRY(hook) entry;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Option data structures. */
|
/* Option data structures. */
|
||||||
|
Loading…
Reference in New Issue
Block a user