From de9a7b2e16e345b51a4b1ebed6f6138e15b268af Mon Sep 17 00:00:00 2001 From: cancel Date: Mon, 13 Jan 2020 13:25:23 +0900 Subject: [PATCH] Remove mention of --margins from readme Still supported for now, but mostly useless clutter in the readme and usage, since you can set it from the menu/prefs and conf file. --- README.md | 2 -- tui_main.c | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 80a017f..d586002 100644 --- a/README.md +++ b/README.md @@ -102,8 +102,6 @@ The `make` wrapper will enable `--portmidi` by default. If you run the `tool` bu Usage: orca [options] [file] General options: - --margins Set cosmetic margins. - Default: 2x1 --undo-limit Set the maximum number of undo steps. If you plan to work with large files, set this to a low number. diff --git a/tui_main.c b/tui_main.c index f3f7754..eafe4b3 100644 --- a/tui_main.c +++ b/tui_main.c @@ -28,8 +28,6 @@ static void usage(void) { fprintf(stderr, "Usage: orca [options] [file]\n\n" "General options:\n" -" --margins Set cosmetic margins.\n" -" Default: 2x1\n" " --undo-limit Set the maximum number of undo steps.\n" " If you plan to work with large files,\n" " set this to a low number.\n" @@ -2650,7 +2648,7 @@ void print_loading_message(char const *s) { // enum { - Argopt_margins = UCHAR_MAX + 1, + Argopt_margins = UCHAR_MAX + 1, // TODO remove, use conf opts only Argopt_hardmargins, Argopt_undo_limit, Argopt_init_grid_size,