X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fshow.c;h=5773b56ea4772bcfe9748d53f67eafb7ff3c00dd;hb=557d33aeabe46e9a0411959703f721c5b9ce2ae9;hp=5ab6370287182be486915eb7a66dff7e57202a11;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/uip/show.c b/uip/show.c index 5ab6370..5773b56 100644 --- a/uip/show.c +++ b/uip/show.c @@ -3,6 +3,10 @@ * show.c -- show/list messages * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include @@ -49,6 +53,9 @@ static struct swit switches[] = { */ static int is_nontext(char *); +/* prototype from mhlsbr.c */ +int mhl (int, char **); + #define SHOW 0 #define NEXT 1 #define PREV 2 @@ -315,6 +322,14 @@ go_to_it: ; vec[vecp] = NULL; } + /* If the "proc" is "mhshow", add "-file" if showing file or draft. + */ + if (strcmp (r1bindex (proc, '/'), "mhshow") == 0 && (draftsw || file) ) { + vec[vecp] = vec[vecp - 1]; + vec[vecp - 1] = "-file"; + vec[++vecp] = NULL; + } + /* * If "proc" is mhl, then run it internally * rather than exec'ing it. @@ -345,6 +360,7 @@ go_to_it: ; vec[0] = r1bindex (proc, '/'); execvp (proc, vec); adios (proc, "unable to exec"); + return 0; /* dead code to satisfy the compiler */ } /* @@ -458,7 +474,7 @@ invalid: *bp = '\0'; } else { for (bp = dp; *bp; bp++) - if (isspace (*bp)) { + if (!istoken (*bp)) { *bp = '\0'; break; }