From f8987917d80f0b46d9f1848c23e4469a16f8b74c Mon Sep 17 00:00:00 2001 From: cancel Date: Tue, 4 Dec 2018 11:55:44 +0900 Subject: [PATCH] Change default margins to 2 --- tui_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tui_main.c b/tui_main.c index d1263aa..e480d2c 100644 --- a/tui_main.c +++ b/tui_main.c @@ -16,7 +16,7 @@ static void usage() { "Usage: tui [options] [file]\n\n" "Options:\n" " --margins Add cosmetic margins.\n" - " Default: 0\n" + " Default: 2\n" " -h or --help Print this message and exit.\n" ); // clang-format on @@ -360,7 +360,7 @@ int main(int argc, char** argv) { {"help", no_argument, 0, 'h'}, {NULL, 0, NULL, 0}}; char* input_file = NULL; - int margin_thickness = true; + int margin_thickness = 2; for (;;) { int c = getopt_long(argc, argv, "h", tui_options, NULL); if (c == -1)