summaryrefslogtreecommitdiffstats
path: root/cmd-find-window.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-10 21:51:39 +0000
committernicm <nicm>2016-10-10 21:51:39 +0000
commita81685bfac9d4eac3a7cfd8f8ce13033a46fe01c (patch)
treef067d0071fc93a06c2364fe419b93cce31ac0825 /cmd-find-window.c
parentc426e485e527a03aa3b4bdbb3203f621e006cbd5 (diff)
Add static in cmd-* and fix a few other nits.
Diffstat (limited to 'cmd-find-window.c')
-rw-r--r--cmd-find-window.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/cmd-find-window.c b/cmd-find-window.c
index 6324f26a..6ab6fbcf 100644
--- a/cmd-find-window.c
+++ b/cmd-find-window.c
@@ -33,9 +33,9 @@
"[#{window_width}x#{window_height}] " \
"(#{window_panes} panes) #{window_find_matches}"
-enum cmd_retval cmd_find_window_exec(struct cmd *, struct cmd_q *);
+static enum cmd_retval cmd_find_window_exec(struct cmd *, struct cmd_q *);
-void cmd_find_window_callback(struct window_choose_data *);
+static void cmd_find_window_callback(struct window_choose_data *);
/* Flags for determining matching behavior. */
#define CMD_FIND_WINDOW_BY_TITLE 0x1
@@ -68,11 +68,11 @@ struct cmd_find_window_data {
};
TAILQ_HEAD(cmd_find_window_list, cmd_find_window_data);
-u_int cmd_find_window_match_flags(struct args *);
-void cmd_find_window_match(struct cmd_find_window_list *, int,
- struct winlink *, const char *, const char *);
+static u_int cmd_find_window_match_flags(struct args *);
+static void cmd_find_window_match(struct cmd_find_window_list *, int,
+ struct winlink *, const char *, const char *);
-u_int
+static u_int
cmd_find_window_match_flags(struct args *args)
{
u_int match_flags = 0;
@@ -92,7 +92,7 @@ cmd_find_window_match_flags(struct args *args)
return (match_flags);
}
-void
+static void
cmd_find_window_match(struct cmd_find_window_list *find_list,
int match_flags, struct winlink *wl, const char *str,
const char *searchstr)
@@ -138,7 +138,7 @@ cmd_find_window_match(struct cmd_find_window_list *find_list,
free(find_data);
}
-enum cmd_retval
+static enum cmd_retval
cmd_find_window_exec(struct cmd *self, struct cmd_q *cmdq)
{
struct args *args = self->args;
@@ -216,7 +216,7 @@ out:
return (CMD_RETURN_NORMAL);
}
-void
+static void
cmd_find_window_callback(struct window_choose_data *cdata)
{
struct session *s;