diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-26 06:45:28 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-26 06:45:28 +0000 |
commit | 62457bce0b6d23c1b6a8206582ac3dd206d4225d (patch) | |
tree | 42428d54daf3273242003827d16ae37d81e50230 /tmux.h | |
parent | df2b3bcf44299d7060b3bc6c17c6e80a1f358692 (diff) | |
download | rtmux-62457bce0b6d23c1b6a8206582ac3dd206d4225d.tar.gz rtmux-62457bce0b6d23c1b6a8206582ac3dd206d4225d.tar.bz2 rtmux-62457bce0b6d23c1b6a8206582ac3dd206d4225d.zip |
Trim.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.190 2008-09-25 23:28:15 nicm Exp $ */ +/* $Id: tmux.h,v 1.191 2008-09-26 06:45:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -433,12 +433,12 @@ struct grid_cell { u_char fg; u_char bg; } __packed; - + /* Grid data. */ struct grid_data { u_int sx; u_int sy; - + u_int hsize; u_int hlimit; @@ -824,7 +824,7 @@ struct set_option_entry { enum { SET_OPTION_STRING, SET_OPTION_NUMBER, - SET_OPTION_KEY, + SET_OPTION_KEY, SET_OPTION_COLOUR, SET_OPTION_FLAG, SET_OPTION_CHOICE @@ -832,7 +832,7 @@ struct set_option_entry { u_int minimum; u_int maximum; - + const char **choices; }; extern const struct set_option_entry set_option_table[]; |