X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fdist.c;h=52e480eecaa963509ea51f20fced8dee78feadda;hp=57393769386e0576ccdb912cad80f67c0b1febcb;hb=c8195849d2e366c569271abb0f5f60f4ebf0b4d0;hpb=7b300825615f4d13c2c1a1bd0d05462f9708b7e7 diff --git a/uip/dist.c b/uip/dist.c index 5739376..52e480e 100644 --- a/uip/dist.c +++ b/uip/dist.c @@ -21,19 +21,15 @@ static struct swit switches[] = { { "noedit", 0 }, #define FORMSW 4 { "form formfile", 0 }, -#define INPLSW 5 - { "inplace", 0 }, -#define NINPLSW 6 - { "noinplace", 0 }, -#define WHATSW 7 +#define WHATSW 5 { "whatnowproc program", 0 }, -#define NWHATSW 8 +#define NWHATSW 6 { "nowhatnowproc", 0 }, -#define VERSIONSW 9 +#define VERSIONSW 7 { "version", 0 }, -#define HELPSW 10 +#define HELPSW 8 { "help", 0 }, -#define FILESW 11 +#define FILESW 9 { "file file", -4 }, /* interface from msh */ { NULL, 0 } }; @@ -42,7 +38,7 @@ static struct swit switches[] = { int main(int argc, char **argv) { - int anot = 0, inplace = 1, nedit = 0; + int anot = 0, nedit = 0; int nwhat = 0, in, out; char *cp, *cwd, *maildir, *msgnam; char *ed = NULL, *file = NULL, *folder = NULL; @@ -118,13 +114,6 @@ main(int argc, char **argv) adios(NULL, "missing argument to %s", argp[-2]); continue; - - case INPLSW: - inplace++; - continue; - case NINPLSW: - inplace = 0; - continue; } } if (*cp == '+' || *cp == '@') { @@ -205,7 +194,7 @@ main(int argc, char **argv) if (nwhat) done(0); what_now(ed, nedit, NOUSE, drft, msgnam, 1, mp, anot ? "Resent" : NULL, - inplace, cwd); + cwd); done(1); return 1; }