X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhshowsbr.c;h=6dae3e8b944eb3785d16c4ceb1eb4364a360fbd4;hp=fe9a6269e3cb40a8c19cf6f587f34fc9ab753a9a;hb=0c4214ea2aec6497d0d67b436bbee9bc1d225f1e;hpb=9e9e918ec2a607aca26253fe945ea9569475aae3 diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c index fe9a626..6dae3e8 100644 --- a/uip/mhshowsbr.c +++ b/uip/mhshowsbr.c @@ -36,12 +36,7 @@ extern int debugsw; int serialsw = 0; int nolist = 0; - -char *progsw = NULL; - -/* flags for moreproc/header display */ char *formsw = NULL; - pid_t xpid = 0; @@ -195,12 +190,6 @@ DisplayMsgHeader(CT ct, char *form) vec[vecp++] = form; vec[vecp++] = "-nobody"; vec[vecp++] = ct->c_file; - - /* If we've specified -moreproc, then just pass that along. */ - if (progsw) { - vec[vecp++] = "-moreproc"; - vec[vecp++] = progsw; - } vec[vecp] = NULL; fflush(stdout); @@ -615,8 +604,7 @@ show_text(CT ct, int serial, int alternate) ** if it is not a text part of a multipart/alternative */ if (!alternate || ct->c_subtype == TEXT_PLAIN) { - snprintf(buffer, sizeof(buffer), "%%p%s '%%F'", - progsw ? progsw : moreproc); + snprintf(buffer, sizeof(buffer), "%%p%s '%%F'", defaultpager); cp = (ct->c_showproc = getcpy(buffer)); return show_content_aux(ct, serial, alternate, cp, NULL); }