* layout.c: Make more variables static.

This commit is contained in:
Pavel Roskin 2001-11-29 20:30:50 +00:00
parent d816549ab9
commit 905b9ac8f8
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2001-11-29 Pavel Roskin <proski@gnu.org>
* layout.c: Make more variables static.
* cons.saver.c: Define LINUX_CONS_SAVER_C so that some parts
of cons.saver.h can be omitted.
* cons.saver.h: Declare nothing but constants if

View File

@ -112,7 +112,7 @@ int output_start_y = 0;
/* Janne gets around this, we will only manage two of them :-) */
#define MAX_VIEWS 2
struct {
static struct {
int type;
Widget *widget;
} panels [MAX_VIEWS];
@ -155,7 +155,8 @@ static char *s_split_direction [2] = {
N_("&Vertical"),
N_("&Horizontal")
};
WRadio *radio_widget;
static WRadio *radio_widget;
static struct {
char *text;