X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fsend.c;h=3055df78a4c513bd3f21f702d1f099167d6a2f18;hp=d52b9e352b6d41eb23925c6b690d689e501de3d3;hb=c8195849d2e366c569271abb0f5f60f4ebf0b4d0;hpb=7b300825615f4d13c2c1a1bd0d05462f9708b7e7 diff --git a/uip/send.c b/uip/send.c index d52b9e3..3055df7 100644 --- a/uip/send.c +++ b/uip/send.c @@ -29,7 +29,6 @@ int debugsw = 0; /* global */ int forwsw = 1; -int inplace = 1; int pushsw = 0; int verbsw = 0; char *altmsg = NULL; @@ -260,9 +259,6 @@ main(int argc, char **argv) if (!(annotext = getenv("mhannotate")) || !*annotext) { annotext = NULL; } - if (annotext && ((cp = getenv("mhinplace")) && *cp)) { - inplace = atoi(cp); - } if (!(altmsg = getenv("mhaltmsg")) || !*altmsg) { altmsg = NULL; /* used by dist interface - see below */ } @@ -927,16 +923,14 @@ annoaux(void) } if (debugsw) { - advise(NULL, "annotate%s as `%s'", inplace ? " inplace" : "", - annotext); + advise(NULL, "annotate as `%s'", annotext); } for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) { if (is_selected(mp, msgnum)) { if (debugsw) { advise(NULL, "annotate message %d", msgnum); } - annotate(m_name(msgnum), annotext, NULL, inplace, - 1, -2, 0); + annotate(m_name(msgnum), annotext, NULL, 1, -2, 0); } }