This commit is contained in:
Nicholas Marriott
2008-09-26 06:45:28 +00:00
parent df2b3bcf44
commit 62457bce0b
33 changed files with 224 additions and 224 deletions

10
tmux.h
View File

@ -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[];