summaryrefslogtreecommitdiffstats
path: root/cmd-set-option.c
diff options
context:
space:
mode:
authornicm <nicm>2017-01-16 14:49:14 +0000
committernicm <nicm>2017-01-16 14:49:14 +0000
commit68db9584777fd40f6100e7944992a021f6e40c71 (patch)
tree33c49d924f6846a337348bc5067c8f9d845a018e /cmd-set-option.c
parent52847a951802fda7a3ce36cdac77c34914b0ccca (diff)
getopt() has a struct option so just return to using options_entry.
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r--cmd-set-option.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c
index 475b91c2..ef2ce10b 100644
--- a/cmd-set-option.c
+++ b/cmd-set-option.c
@@ -30,7 +30,7 @@
static enum cmd_retval cmd_set_option_exec(struct cmd *, struct cmdq_item *);
static int cmd_set_option_set(struct cmd *, struct cmdq_item *,
- struct options *, struct option *, const char *);
+ struct options *, struct options_entry *, const char *);
static int cmd_set_option_flag(struct cmdq_item *,
const struct options_table_entry *, struct options *,
const char *);
@@ -75,7 +75,7 @@ cmd_set_option_exec(struct cmd *self, struct cmdq_item *item)
struct client *c;
enum options_table_scope scope;
struct options *oo;
- struct option *parent, *o;
+ struct options_entry *parent, *o;
const char *name, *value, *target;
int window, idx, already, error, ambiguous;
char *cause;
@@ -256,12 +256,12 @@ cmd_set_option_exec(struct cmd *self, struct cmdq_item *item)
static int
cmd_set_option_set(struct cmd *self, struct cmdq_item *item, struct options *oo,
- struct option *parent, const char *value)
+ struct options_entry *parent, const char *value)
{
const struct options_table_entry *oe;
struct args *args = self->args;
int append = args_has(args, 'a');
- struct option *o;
+ struct options_entry *o;
long long number;
const char *errstr;
key_code key;