Annotations will always be done inplace from now on.
[mmh] / uip / repl.c
index 6231d46..354bb79 100644 (file)
@@ -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;
 }