X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Frepl.c;h=354bb79c20e4e786fffd5a679595c05c87d8b70a;hp=3b490045e1f3967e1f26f49f965de1fac66d5ab3;hb=c8195849d2e366c569271abb0f5f60f4ebf0b4d0;hpb=3cc8ed080f6e741b8df04a3ebe764c659e75cb38 diff --git a/uip/repl.c b/uip/repl.c index 3b49004..354bb79 100644 --- a/uip/repl.c +++ b/uip/repl.c @@ -37,33 +37,27 @@ static struct swit switches[] = { { "format", 5 }, #define NFRMTSW 12 { "noformat", 7 }, -#define INPLSW 13 - { "inplace", 0 }, -#define NINPLSW 14 - { "noinplace", 0 }, -#define MIMESW 15 +#define MIMESW 13 { "mime", 0 }, -#define NMIMESW 16 +#define NMIMESW 14 { "nomime", 0 }, -#define QURYSW 17 +#define QURYSW 15 { "query", 0 }, -#define NQURYSW 18 +#define NQURYSW 16 { "noquery", 0 }, -#define WHATSW 19 +#define WHATSW 17 { "whatnowproc program", 0 }, -#define NWHATSW 20 +#define NWHATSW 18 { "nowhatnowproc", 0 }, -#define WIDTHSW 21 - { "width columns", 0 }, -#define VERSIONSW 22 +#define VERSIONSW 19 { "version", 0 }, -#define HELPSW 23 +#define HELPSW 20 { "help", 0 }, -#define FILESW 24 +#define FILESW 21 { "file file", 4 }, /* interface from msh */ #ifdef MHE -#define BILDSW 25 +#define BILDSW 22 { "build", 5 }, /* interface from mhe */ #endif @@ -87,7 +81,6 @@ short cccc = -1; short ccme = -1; short querysw = 0; -short outputlinelen = OUTPUTLINELEN; short groupreply = 0; /* Is this a group reply? */ int mime = 0; /* include original as MIME part */ @@ -105,7 +98,7 @@ void docc(char *, int); int main(int argc, char **argv) { - int anot = 0, inplace = 1; + int anot = 0; int nedit = 0, nwhat = 0; char *cp, *cwd, *dp, *maildir, *file = NULL; char *folder = NULL, *msg = NULL; @@ -241,13 +234,6 @@ main(int argc, char **argv) filter = NULL; continue; - case INPLSW: - inplace++; - continue; - case NINPLSW: - inplace = 0; - continue; - case MIMESW: mime++; filter = NULL; @@ -263,14 +249,6 @@ main(int argc, char **argv) querysw = 0; continue; - case WIDTHSW: - if (!(cp = *argp++) || *cp == '-') - adios(NULL, "missing argument to %s", - argp[-2]); - if ((outputlinelen = atoi(cp)) < 10) - adios(NULL, "impossible width %d", - outputlinelen); - continue; } } if (*cp == '+' || *cp == '@') { @@ -358,13 +336,13 @@ main(int argc, char **argv) form = etcpath(replcomps); } - replout(in, msg, drft, mp, outputlinelen, mime, form, filter, fcc); + replout(in, msg, drft, mp, mime, form, filter, fcc); fclose(in); if (nwhat) done(0); what_now(ed, nedit, NOUSE, drft, msg, 0, mp, anot ? "Replied" : NULL, - inplace, cwd); + cwd); done(1); return 1; }