Reformated comments and long lines
[mmh] / uip / mark.c
index e4d078e..9cca0ad 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * mark.c -- add message(s) to sequences in given folder
- *        -- delete messages (s) from sequences in given folder
- *        -- list sequences in given folder
- *
- * 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.
- */
+** mark.c -- add message(s) to sequences in given folder
+**        -- delete messages (s) from sequences in given folder
+**        -- list sequences in given folder
+**
+** 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>
@@ -38,8 +38,8 @@ static struct swit switches[] = {
 };
 
 /*
- * static prototypes
- */
+** static prototypes
+*/
 static void print_debug (struct msgs *);
 static void seq_printdebug (struct msgs *);
 
@@ -68,8 +68,8 @@ main (int argc, char **argv)
        argp = arguments;
 
        /*
-        * Parse arguments
-        */
+       ** Parse arguments
+       */
        while ((cp = *argp++)) {
                if (*cp == '-') {
                        switch (smatch (++cp, switches)) {
@@ -141,10 +141,10 @@ main (int argc, char **argv)
        }
 
        /*
-        * If we haven't specified -add, -delete, or -list,
-        * then use -add if a sequence was specified, else
-        * use -list.
-        */
+       ** If we haven't specified -add, -delete, or -list,
+       ** then use -add if a sequence was specified, else
+       ** use -list.
+       */
        if (!addsw && !deletesw && !listsw) {
                if (seqp)
                        addsw++;
@@ -184,9 +184,9 @@ main (int argc, char **argv)
                adios (NULL, "folder %s is read-only, so -public not allowed", folder);
 
        /*
-        * Make sure at least one sequence has been
-        * specified if we are adding or deleting.
-        */
+       ** Make sure at least one sequence has been
+       ** specified if we are adding or deleting.
+       */
        if (seqp == 0 && (addsw || deletesw))
                adios (NULL, "-%s requires at least one -sequence argument",
                        addsw ? "add" : "delete");
@@ -232,8 +232,8 @@ main (int argc, char **argv)
 
 
 /*
- * Print general debugging info
- */
+** Print general debugging info
+*/
 static void
 print_debug (struct msgs *mp)
 {
@@ -257,9 +257,9 @@ print_debug (struct msgs *mp)
 
 
 /*
- * Print debugging info about all the SELECTED
- * messages and the sequences they are in.
- */
+** Print debugging info about all the SELECTED
+** messages and the sequences they are in.
+*/
 static void
 seq_printdebug (struct msgs *mp)
 {