when a -file switch will be used, insert -[no]concat before
the filename (and therefore, the -file switch itself).
char **mp;
for (i = 0, mp = non_mhl_vec.msgs; i < non_mhl_vec.size; ++i, ++mp) {
char **mp;
for (i = 0, mp = non_mhl_vec.msgs; i < non_mhl_vec.size; ++i, ++mp) {
+ if (draftsw || file) {
+ /* Insert the switch before the filename. */
+ app_msgarg(&vec, vec.msgs[vec.size - 1]);
+ vec.msgs[vec.size - 2] = *mp;
+ } else {
+ app_msgarg(&vec, *mp);
+ }
}
if (strcmp (r1bindex (proc, '/'), "mhn") == 0) {
}
if (strcmp (r1bindex (proc, '/'), "mhn") == 0) {