Reformated comments and long lines
[mmh] / sbr / m_draft.c
index 4a64804..845fb96 100644 (file)
@@ -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 <h/mh.h>
 #include <h/utils.h>
@@ -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);