mirror of
https://github.com/tmux/tmux.git
synced 2025-01-14 20:58:53 +00:00
Don't allow options in table without scope set.
This commit is contained in:
parent
2adf3f42ee
commit
b32ce34cf2
@ -892,6 +892,8 @@ options_table_populate_tree(enum options_table_scope scope, struct options *oo)
|
||||
const struct options_table_entry *oe;
|
||||
|
||||
for (oe = options_table; oe->name != NULL; oe++) {
|
||||
if (oe->scope == OPTIONS_TABLE_NONE)
|
||||
fatalx("no scope for %s", oe->name);
|
||||
if (oe->scope != scope)
|
||||
continue;
|
||||
switch (oe->type) {
|
||||
|
Loading…
Reference in New Issue
Block a user