summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4af34da)
raw | patch | inline | side by side (parent: 4af34da)
author | Jonas Fonseca <fonseca@diku.dk> | |
Sat, 9 Sep 2006 20:09:26 +0000 (22:09 +0200) | ||
committer | Jonas Fonseca <fonseca@antimatter.localdomain> | |
Sat, 9 Sep 2006 20:09:26 +0000 (22:09 +0200) |
tig.c | patch | blob | history |
index ff1abddfe6d06573e319d30312975b11382749d1..f9a9a1ac05f7f4a413d59dbd6b73deeadc7a2fab 100644 (file)
--- a/tig.c
+++ b/tig.c
" -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,