diff options
author | nicm <nicm> | 2017-04-22 12:08:41 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-04-22 12:08:41 +0000 |
commit | ae1a6c2fc507679d46e986fa0276dfd1459660b8 (patch) | |
tree | eadd8f3655c1578c60595c27e8d2d45d205b7645 | |
parent | 55cd4c7bc756509f241788f7f73676676ef538f6 (diff) | |
download | rtmux-ae1a6c2fc507679d46e986fa0276dfd1459660b8.tar.gz rtmux-ae1a6c2fc507679d46e986fa0276dfd1459660b8.tar.bz2 rtmux-ae1a6c2fc507679d46e986fa0276dfd1459660b8.zip |
Do not need getopt.h.
-rw-r--r-- | arguments.c | 1 | ||||
-rw-r--r-- | cmd-find.c | 2 | ||||
-rw-r--r-- | tmux.c | 1 |
3 files changed, 1 insertions, 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 <sys/types.h> -#include <getopt.h> #include <stdlib.h> #include <string.h> #include <unistd.h> @@ -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 */ @@ -23,7 +23,6 @@ #include <errno.h> #include <event.h> #include <fcntl.h> -#include <getopt.h> #include <langinfo.h> #include <locale.h> #include <paths.h> |