diff options
author | EuAndreh <eu@euandre.org> | 2021-08-22 11:38:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-22 11:42:37 -0300 |
commit | 916b2f6a95a08664427bc0f2affd5596c8485dd5 (patch) | |
tree | ae94d52e648d30f1971ce316a200349ab2a06b08 /src/gistatic.c | |
parent | TODOs.md: Add #task-218e2893-c2d3-caa5-b0e3-cde70b31a3f7 (diff) | |
download | gistatic-916b2f6a95a08664427bc0f2affd5596c8485dd5.tar.gz gistatic-916b2f6a95a08664427bc0f2affd5596c8485dd5.tar.xz |
src/gistatic.c: Remove unused MSGs
Diffstat (limited to 'src/gistatic.c')
-rw-r--r-- | src/gistatic.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/gistatic.c b/src/gistatic.c index 0a65b6c..8f067b7 100644 --- a/src/gistatic.c +++ b/src/gistatic.c @@ -50,12 +50,10 @@ static nl_catd catalog_descriptor = NULL; #define MSG_THEAD_AUTHOR 18 #define MSG_THEAD_DATE 19 #define MSG_THEAD_TAG 20 -#define MSG_THEAD_DOWNLOAD 21 -#define MSG_MISSING_URL 22 -#define MSG_MISSING_ARGS 23 -#define MSG_INCOMPATIBLE_OPTIONS 24 -#define MSG_ERR_NONDIRECT_REF 25 -#define MSG_INDEX_DESCRIPTION 26 +#define MSG_MISSING_URL 21 +#define MSG_MISSING_ARGS 22 +#define MSG_INCOMPATIBLE_OPTIONS 23 +#define MSG_INDEX_DESCRIPTION 24 static const char *const MSGS[] = { "", @@ -94,11 +92,9 @@ static const char *const MSGS[] = { [MSG_THEAD_AUTHOR]="Author", [MSG_THEAD_DATE]="Date", [MSG_THEAD_TAG]="Tag", - [MSG_THEAD_DOWNLOAD]="Download", [MSG_MISSING_URL]="Missing '-u CLONE_URL'", [MSG_MISSING_ARGS]="Missing [PATH | [PATHS]]", [MSG_INCOMPATIBLE_OPTIONS]="Incompatible options -u and -i", - [MSG_ERR_NONDIRECT_REF]="Git reference is not direct", [MSG_INDEX_DESCRIPTION]="Index of repositories", NULL }; |