diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-24 09:34:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-24 09:34:56 +0000 |
commit | 59e72ac7b0a0a18ba6d12fc0eb00882b5073b2c4 (patch) | |
tree | cd5b803c2b53e2f95a750fffe3e1fd514e85d21c /usr.bin/tmux/tmux.h | |
parent | 1f4d2c0965d5251bd021bb9c4f02de687a4bc091 (diff) |
Don't allow options in table without scope set.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 5747a528c78..b14354e9574 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.586 2015/11/23 23:47:57 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.587 2015/11/24 09:34:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1394,6 +1394,7 @@ enum options_table_type { OPTIONS_TABLE_STYLE }; enum options_table_scope { + OPTIONS_TABLE_NONE, OPTIONS_TABLE_SERVER, OPTIONS_TABLE_SESSION, OPTIONS_TABLE_WINDOW, |