From 441ca1cebe7ce5c45304108533a1db2b988c1f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= Date: Tue, 11 Nov 2014 02:58:28 +0100 Subject: Drop short opts for flips --- src/yawa.c | 8 ++++---- src/yawa.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/yawa.c b/src/yawa.c index 9a78eea..1dc2fd8 100644 --- a/src/yawa.c +++ b/src/yawa.c @@ -46,7 +46,7 @@ parse_opt(signed key, char *arg, struct argp_state *state) num_add_colors += 1; break; - case 'D': + case 'd': ; signed distance = parse_int(arg, "add distance"); arguments->distance[num_distances] = distance; @@ -120,15 +120,15 @@ parse_opt(signed key, char *arg, struct argp_state *state) arguments->gamma_amount = parse_double(arg, "gamma amount"); break; - case 'v': + case 1: arguments->flipv = true; break; - case 'h': + case 2: arguments->fliph = true; break; - case 'd': + case 3: arguments->flipd = true; break; diff --git a/src/yawa.h b/src/yawa.h index 9fe8cb2..f7bde5f 100644 --- a/src/yawa.h +++ b/src/yawa.h @@ -76,7 +76,7 @@ struct arguments { static struct argp_option options[] = { {0, 0, 0, 0, "Gradients:", 1}, {"add", 'a', "COLOR", 0, "Add color to range", 1}, - {"distance", 'D', "DISTANCE", 0, "Distance to use for adding color to range. " + {"distance", 'd', "DISTANCE", 0, "Distance to use for adding color to range. " "Defaults to 1 for each color", 1}, {"gradient", 'g', "ANGLE", 0, "Render gradient using specified angle", 1}, {"clear", 'c', 0, 0, "Clear the color range", 1}, @@ -97,9 +97,9 @@ static struct argp_option options[] = { {"contrast", 'o', "AMOUNT", 0, "Adjust the contrast of the current image", 4}, {"brightness", 'B', "AMOUNT", 0, "Adjust the bightness of the current image", 4}, {"gamma", 'G', "AMOUNT", 0, "Adjust the gamma level of the current image", 4}, - {"flipv", 'v', 0, 0, "Flip the current image vertically", 4}, - {"fliph", 'h', 0, 0, "Flip the current image horizontally", 4}, - {"flipd", 'd', 0, 0, "Flip the current image diagonally", 4}, + {"flipv", 1, 0, 0, "Flip the current image vertically", 4}, + {"fliph", 2, 0, 0, "Flip the current image horizontally", 4}, + {"flipd", 3, 0, 0, "Flip the current image diagonally", 4}, {0, 0, 0, 0, "Misc:", -1}, {"alpha", 'A', "AMOUNT", 0, "Adjust alpha level for colors and images", -1}, -- cgit v1.2.3