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,