Add static in window-*.c and move some internal functions out of tmux.h.

This commit is contained in:
nicm
2016-10-11 13:21:59 +00:00
parent 85d7afaefc
commit e45401846f
13 changed files with 233 additions and 237 deletions

View File

@ -26,6 +26,7 @@
#include "tmux.h"
static enum cmd_retval cmdq_continue_one(struct cmd_q *);
static void cmdq_flush(struct cmd_q *);
/* Create new command queue. */
struct cmd_q *
@ -319,7 +320,7 @@ out:
}
/* Flush command queue. */
void
static void
cmdq_flush(struct cmd_q *cmdq)
{
struct cmd_q_item *item, *item1;