From ae1a6c2fc507679d46e986fa0276dfd1459660b8 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 22 Apr 2017 12:08:41 +0000 Subject: [PATCH] Do not need getopt.h. --- arguments.c | 1 - cmd-find.c | 2 +- tmux.c | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/arguments.c b/arguments.c index 5ac51ddc..37028648 100644 --- a/arguments.c +++ b/arguments.c @@ -18,7 +18,6 @@ #include -#include #include #include #include diff --git a/cmd-find.c b/cmd-find.c index 630a6340..f2b098ab 100644 --- a/cmd-find.c +++ b/cmd-find.c @@ -891,7 +891,7 @@ cmd_find_from_client(struct cmd_find_state *fs, struct client *c) } if (wl != NULL) { fs->s = s; - fs->wl = s->curw; /* use active session */ + fs->wl = s->curw; /* use current session */ fs->w = fs->wl->window; fs->wp = fs->w->active; /* use active pane */ diff --git a/tmux.c b/tmux.c index 2fb57092..9c32fa0a 100644 --- a/tmux.c +++ b/tmux.c @@ -23,7 +23,6 @@ #include #include #include -#include #include #include #include