summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-set-option.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2013-10-10 12:00:18 +0000
committernicm <nicm@openbsd.org>2013-10-10 12:00:18 +0000
commit1fe07f53781f00c276628c358e88053fad77e915 (patch)
treeb810e4d7bda1c5f43d3aadab3b26651804dcb3d6 /usr.bin/tmux/cmd-set-option.c
parentClear window->flags when clearing winlinks (diff)
downloadwireguard-openbsd-1fe07f53781f00c276628c358e88053fad77e915.tar.xz
wireguard-openbsd-1fe07f53781f00c276628c358e88053fad77e915.zip
Remove the barely-used and unnecessary command check() function.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r--usr.bin/tmux/cmd-set-option.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c
index a8a25a22145..d2b63e54fe0 100644
--- a/usr.bin/tmux/cmd-set-option.c
+++ b/usr.bin/tmux/cmd-set-option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-set-option.c,v 1.62 2013/07/05 15:10:38 nicm Exp $ */
+/* $OpenBSD: cmd-set-option.c,v 1.63 2013/10/10 12:00:23 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -67,7 +67,6 @@ const struct cmd_entry cmd_set_option_entry = {
"[-agosquw] [-t target-session|target-window] option [value]",
0,
NULL,
- NULL,
cmd_set_option_exec
};
@@ -77,7 +76,6 @@ const struct cmd_entry cmd_set_window_option_entry = {
"[-agoqu] " CMD_TARGET_WINDOW_USAGE " option [value]",
0,
NULL,
- NULL,
cmd_set_option_exec
};