Reformated comments and long lines
[mmh] / uip / mhpath.c
index aa38bbe..b658f29 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * mhpath.c -- print full pathnames of nmh messages and folders
- *
- * 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.
- */
+** mhpath.c -- print full pathnames of nmh messages and folders
+**
+** 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,8 +39,8 @@ main(int argc, char **argv)
        argp = arguments;
 
        /*
-        * Parse arguments
-        */
+       ** Parse arguments
+       */
        while ((cp = *argp++)) {
                if (*cp == '-') {
                        switch (smatch (++cp, switches)) {
@@ -90,11 +90,11 @@ main(int argc, char **argv)
                adios (NULL, "unable to read folder %s", folder);
 
        /*
-        * We need to make sure there is message status space
-        * for all the message numbers from 1 to "new" since
-        * mhpath can select empty slots.  If we are adding
-        * space at the end, we go ahead and add 10 slots.
-        */
+       ** We need to make sure there is message status space
+       ** for all the message numbers from 1 to "new" since
+       ** mhpath can select empty slots.  If we are adding
+       ** space at the end, we go ahead and add 10 slots.
+       */
        if (mp->hghmsg >= mp->hghoff) {
                if (!(mp = folder_realloc (mp, 1, mp->hghmsg + 10)))
                        adios (NULL, "unable to allocate folder storage");