Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit

annoying and it is only use for iterating, so use a sentinel to mark the end of
each array instead. Different fix for a problem pointed out by Kalle Olavi
Niemitalo.
This commit is contained in:
Nicholas Marriott
2009-07-15 17:44:47 +00:00
parent 6ebb1df8fe
commit ff90170738
6 changed files with 23 additions and 33 deletions

4
tmux.h
View File

@@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.364 2009-07-15 17:44:25 nicm Exp $ */
/* $Id: tmux.h,v 1.365 2009-07-15 17:44:47 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -940,8 +940,6 @@ struct set_option_entry {
};
extern const struct set_option_entry set_option_table[];
extern const struct set_option_entry set_window_option_table[];
#define NSETOPTION 26
#define NSETWINDOWOPTION 20
/* tmux.c */
extern volatile sig_atomic_t sigwinch;