summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-set-option.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2019-04-23 20:36:55 +0000
committernicm <nicm@openbsd.org>2019-04-23 20:36:55 +0000
commit84306383f43633fe9eb5efa8d90d68abd1fd599c (patch)
tree5cdb6cb2f0890e99f4f12ca0a58bb943809f289f /usr.bin/tmux/cmd-set-option.c
parentadd ccp to acpi, and scale back the caps; (diff)
downloadwireguard-openbsd-84306383f43633fe9eb5efa8d90d68abd1fd599c.tar.xz
wireguard-openbsd-84306383f43633fe9eb5efa8d90d68abd1fd599c.zip
Indicate an array option with a flag rather than a special type so that
in future will not have to be strings.
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 1a0f9de78ce..5976dab3ce7 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.123 2019/03/18 21:46:01 nicm Exp $ */
+/* $OpenBSD: cmd-set-option.c,v 1.124 2019/04/23 20:36:55 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -366,8 +366,6 @@ cmd_set_option_set(struct cmd *self, struct cmdq_item *item, struct options *oo,
return (-1);
}
return (0);
- case OPTIONS_TABLE_ARRAY:
- break;
}
return (-1);
}