Do not need getopt.h.
authornicm <nicm@openbsd.org>
Sat, 22 Apr 2017 12:08:41 +0000 (12:08 +0000)
committernicm <nicm@openbsd.org>
Sat, 22 Apr 2017 12:08:41 +0000 (12:08 +0000)
usr.bin/tmux/arguments.c
usr.bin/tmux/cmd-find.c
usr.bin/tmux/tmux.c

index 91fa643..f17f15a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: arguments.c,v 1.17 2017/01/18 10:08:05 nicm Exp $ */
+/* $OpenBSD: arguments.c,v 1.18 2017/04/22 12:08:41 nicm Exp $ */
 
 /*
  * Copyright (c) 2010 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -18,7 +18,6 @@
 
 #include <sys/types.h>
 
-#include <getopt.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index 533ad7b..5407cce 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-find.c,v 1.51 2017/04/22 10:22:39 nicm Exp $ */
+/* $OpenBSD: cmd-find.c,v 1.52 2017/04/22 12:08:41 nicm Exp $ */
 
 /*
  * Copyright (c) 2015 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -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 */
 
index 34edbca..09a649c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.c,v 1.181 2017/04/20 17:49:26 nicm Exp $ */
+/* $OpenBSD: tmux.c,v 1.182 2017/04/22 12:08:41 nicm Exp $ */
 
 /*
  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -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>