From 92d30f5c42a6f87d3f332797b866d369e2a2d117 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sat, 9 Sep 2006 22:09:26 +0200 Subject: [PATCH] Reformat the state variable list (opt_*) --- tig.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tig.c b/tig.c index ff1abdd..f9a9a1a 100644 --- a/tig.c +++ b/tig.c @@ -370,18 +370,18 @@ VERSION " (" __DATE__ ")\n" " -h, --help Show help message and exit\n"; /* Option and state variables. */ -static bool opt_line_number = FALSE; -static bool opt_rev_graph = TRUE; -static int opt_num_interval = NUMBER_INTERVAL; -static int opt_tab_size = TABSIZE; -static enum request opt_request = REQ_VIEW_MAIN; -static char opt_cmd[SIZEOF_STR] = ""; -static FILE *opt_pipe = NULL; -static char opt_encoding[20] = "UTF-8"; -static bool opt_utf8 = TRUE; -static char opt_codeset[20] = "UTF-8"; -static iconv_t opt_iconv = ICONV_NONE; -static char opt_search[SIZEOF_STR] = ""; +static bool opt_line_number = FALSE; +static bool opt_rev_graph = TRUE; +static int opt_num_interval = NUMBER_INTERVAL; +static int opt_tab_size = TABSIZE; +static enum request opt_request = REQ_VIEW_MAIN; +static char opt_cmd[SIZEOF_STR] = ""; +static FILE *opt_pipe = NULL; +static char opt_encoding[20] = "UTF-8"; +static bool opt_utf8 = TRUE; +static char opt_codeset[20] = "UTF-8"; +static iconv_t opt_iconv = ICONV_NONE; +static char opt_search[SIZEOF_STR] = ""; enum option_type { OPT_NONE, -- 2.32.0.93.g670b81a890