-/*
- * seq_setprev.c -- set the Previous-Sequence
+/* seq_setprev.c -- set the Previous-Sequence
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* Get the list of sequences for Previous-Sequence
* and split them.
*/
- if ((cp = context_find (psequence))) {
- dp = mh_xstrdup(cp);
- if (!(ap = brkstring (dp, " ", "\n")) || !*ap) {
- free (dp);
- return;
- }
- } else {
- return;
+ if (!(cp = context_find(psequence)))
+ return;
+ dp = mh_xstrdup(cp);
+ if (!(ap = brkstring(dp, " ", "\n")) || !*ap) {
+ free(dp);
+ return;
}
/* Now add all SELECTED messages to each sequence */