X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fdist.c;h=3db8cfc068c54bf46b2bbaee6060ed23736ba5fa;hp=b169352fbdcfe51dcb16927e61dd0b2622ed65d1;hb=32b2354dbaf4bf934936eb5b102a4a3d2fdd209a;hpb=ee4f43cf2ef0084ec698e4e87159a94c01940622 diff --git a/uip/dist.c b/uip/dist.c index b169352..3db8cfc 100644 --- a/uip/dist.c +++ b/uip/dist.c @@ -17,15 +17,13 @@ static struct swit switches[] = { { "noannotate", 0 }, #define EDITRSW 2 { "editor editor", 0 }, -#define NEDITSW 3 - { "noedit", 0 }, -#define FORMSW 4 +#define FORMSW 3 { "form formfile", 0 }, -#define WHATSW 5 +#define WHATSW 4 { "whatnowproc program", 0 }, -#define VERSIONSW 6 - { "version", 0 }, -#define HELPSW 7 +#define VERSIONSW 5 + { "Version", 0 }, +#define HELPSW 6 { "help", 0 }, { NULL, 0 } }; @@ -34,7 +32,7 @@ static struct swit switches[] = { int main(int argc, char **argv) { - int anot = 0, nedit = 0; + int anot = 0; int in, out; char *cp, *cwd, *maildir, *msgnam; char *ed = NULL, *folder = NULL; @@ -82,10 +80,6 @@ main(int argc, char **argv) if (!(ed = *argp++) || *ed == '-') adios(NULL, "missing argument to %s", argp[-2]); - nedit = 0; - continue; - case NEDITSW: - nedit++; continue; case WHATSW: @@ -159,8 +153,7 @@ main(int argc, char **argv) seq_save(mp); /* synchronize sequences */ context_save(); - what_now(ed, nedit, NOUSE, drft, msgnam, 1, mp, - anot ? "Resent" : NULL, cwd); + what_now(ed, NOUSE, drft, msgnam, 1, mp, anot ? "Resent" : NULL, cwd); done(1); return 1; }