X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Frepl.c;h=354bb79c20e4e786fffd5a679595c05c87d8b70a;hp=6231d469873ce2e375e1691d799f5d0cab1b106a;hb=c8195849d2e366c569271abb0f5f60f4ebf0b4d0;hpb=7b300825615f4d13c2c1a1bd0d05462f9708b7e7 diff --git a/uip/repl.c b/uip/repl.c index 6231d46..354bb79 100644 --- a/uip/repl.c +++ b/uip/repl.c @@ -37,31 +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 VERSIONSW 21 +#define VERSIONSW 19 { "version", 0 }, -#define HELPSW 22 +#define HELPSW 20 { "help", 0 }, -#define FILESW 23 +#define FILESW 21 { "file file", 4 }, /* interface from msh */ #ifdef MHE -#define BILDSW 24 +#define BILDSW 22 { "build", 5 }, /* interface from mhe */ #endif @@ -102,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; @@ -238,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; @@ -353,7 +342,7 @@ main(int argc, char **argv) if (nwhat) done(0); what_now(ed, nedit, NOUSE, drft, msg, 0, mp, anot ? "Replied" : NULL, - inplace, cwd); + cwd); done(1); return 1; }