Replaced mkinstalldirs with `mkdir -p'.
[mmh] / uip / repl.c
index efc2b54..1a0e143 100644 (file)
@@ -596,7 +596,7 @@ finished:
 
                snprintf(buffer, sizeof buffer, "+%s %s",
                                mp->foldpath, m_name(mp->lowsel));
-               annotate(drft, attach_hdr, buffer, 0, -2, 1);
+               annotate(drft, attach_hdr, buffer, 0, -2, 1, 0);
        }
 
        /* return dynamically allocated buffers */
@@ -787,7 +787,7 @@ replfilter(FILE *in, FILE *out, char *filter)
                dup2(fileno(out), fileno(stdout));
                closefds(3);
 
-               execlp(mhlproc, mhl, "-form", filter, "-noclear", NULL);
+               execlp(mhlproc, mhl, "-form", filter, NULL);
                errstr = strerror(errno);
                write(2, "unable to exec ", 15);
                write(2, mhlproc, strlen(mhlproc));