X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fm_draft.c;h=845fb9618c878f6bd987e3b940f5776bd2840dfb;hp=4a648047e762e72f46e9c101f9300d763da4904d;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/sbr/m_draft.c b/sbr/m_draft.c index 4a64804..845fb96 100644 --- a/sbr/m_draft.c +++ b/sbr/m_draft.c @@ -1,10 +1,10 @@ /* - * m_draft.c -- construct the name of a draft message - * - * 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. - */ +** m_draft.c -- construct the name of a draft message +** +** 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 #include @@ -39,11 +39,11 @@ m_draft(char *which) adios (NULL, "unable to read folder %s", folder); /* - * Make sure we have enough message status space for all - * the message numbers from 1 to "new", since we might - * select an empty slot. If we add more space at the - * end, go ahead and add 10 additional slots. - */ + ** Make sure we have enough message status space for all + ** the message numbers from 1 to "new", since we might + ** select an empty slot. If we add more space at the + ** end, go ahead and add 10 additional slots. + */ if (mp->hghmsg >= mp->hghoff) { if (!(mp = folder_realloc (mp, 1, mp->hghmsg + 10))) adios (NULL, "unable to allocate folder storage"); @@ -55,10 +55,10 @@ m_draft(char *which) mp->msgflags |= ALLOW_NEW; /* allow the "new" sequence */ /* - * The draft message name to return is defined by `which'. - * Usually it is "cur" (for the current draft) or "new" - * (to start a new draft). - */ + ** The draft message name to return is defined by `which'. + ** Usually it is "cur" (for the current draft) or "new" + ** (to start a new draft). + */ if (!m_convert (mp, which)) done (1); seq_setprev (mp);