-
-/*
- * burst.c -- explode digests into individual messages
+/* burst.c -- explode digests into individual messages
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
if ((numburst = find_delim (msgnum, smsgs, &mimesw)) >= 1) {
if (verbosw)
printf ("%d message%s exploded from digest %d\n",
- numburst, numburst > 1 ? "s" : "", msgnum);
+ numburst, PLURALS(numburst), msgnum);
burst (&mp, msgnum, smsgs, numburst, inplace, verbosw,
maildir, mimesw);
} else {
for (part = m->mp_parts; part; part = part->mp_next)
find_mime_parts(part->mp_part, smsgs, msgp);
}
-
- return;
}