X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/38615191e71744b066425e0c44412b62dbe49cc2..afee8ed17a56617618fb7f963b111d7cf0fb56e7:/uip/mhpath.c diff --git a/uip/mhpath.c b/uip/mhpath.c index c4fd935b..ef16bce2 100644 --- a/uip/mhpath.c +++ b/uip/mhpath.c @@ -2,8 +2,6 @@ /* * mhpath.c -- print full pathnames of nmh messages and folders * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -12,13 +10,17 @@ #include #include -static struct swit switches[] = { -#define VERSIONSW 0 - { "version", 0 }, -#define HELPSW 1 - { "help", 0 }, - { NULL, 0 } -}; +#define MHPATH_SWITCHES \ + X("version", 0, VERSIONSW) \ + X("help", 0, HELPSW) \ + +#define X(sw, minchars, id) id, +DEFINE_SWITCH_ENUM(MHPATH); +#undef X + +#define X(sw, minchars, id) { sw, minchars, id }, +DEFINE_SWITCH_ARRAY(MHPATH, switches); +#undef X int main(int argc, char **argv) @@ -57,10 +59,10 @@ main(int argc, char **argv) snprintf (buf, sizeof(buf), "%s [+folder] [msgs] [switches]", invo_name); print_help (buf, switches, 1); - done (1); + done (0); case VERSIONSW: print_version(invo_name); - done (1); + done (0); } } if (*cp == '+' || *cp == '@') {