X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhl.c;h=5280ade65fdb408e59a7241384d6f89f2cff9758;hb=e6705626cc95da96d367bc147ed0419a56f7c37a;hp=8b29ee4b3be65de88fbbc291ed4ca8da015bdafe;hpb=f1b5a26561ad625f8fc87fe19c77097e719b9aed;p=mmh diff --git a/uip/mhl.c b/uip/mhl.c index 8b29ee4..5280ade 100644 --- a/uip/mhl.c +++ b/uip/mhl.c @@ -40,7 +40,7 @@ #define QUOTE '\\' -static struct swit mhlswitches[] = { +static struct swit switches[] = { #define FORMSW 0 { "form formfile", 0 }, #define WIDTHSW 1 @@ -226,10 +226,7 @@ main(int argc, char **argv) char buf[BUFSIZ], *files[MAXARGS]; char **argp, **arguments; -#ifdef LOCALE setlocale(LC_ALL, ""); -#endif - invo_name = mhbasename(argv[0]); /* read user profile/context */ @@ -243,16 +240,16 @@ main(int argc, char **argv) while ((cp = *argp++)) { if (*cp == '-') { - switch (smatch(++cp, mhlswitches)) { + switch (smatch(++cp, switches)) { case AMBIGSW: - ambigsw(cp, mhlswitches); + ambigsw(cp, switches); done(1); case UNKWNSW: adios(NULL, "-%s unknown\n", cp); case HELPSW: snprintf(buf, sizeof(buf), "%s [switches] [files ...]", invo_name); - print_help(buf, mhlswitches, 1); + print_help(buf, switches, 1); done(1); case VERSIONSW: print_version(invo_name);