Reformated comments and long lines
[mmh] / sbr / seq_del.c
index 44ae6ce..1dbb0b8 100644 (file)
@@ -1,25 +1,25 @@
 /*
 /*
- * seq_del.c -- delete message(s) from a 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
- * complete copyright information.
- */
+** seq_del.c -- delete message(s) from a 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
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 
 
 /*
 
 #include <h/mh.h>
 
 
 /*
- * Delete all SELECTED messages from sequence
- *
- * If public ==  1, make sequence public.
- * If public ==  0, make sequence private.
- * If public == -1, leave the public/private bit alone for existing
- *                  sequences.  For new sequences, set this bit based
- *                  on its readonly status.
- *
- * If error, return 0, else return 1.
- */
+** Delete all SELECTED messages from sequence
+**
+** If public ==  1, make sequence public.
+** If public ==  0, make sequence private.
+** If public == -1, leave the public/private bit alone for existing
+**                  sequences.  For new sequences, set this bit based
+**                  on its readonly status.
+**
+** If error, return 0, else return 1.
+*/
 
 int
 seq_delsel (struct msgs *mp, char *cp, int public, int zero)
 
 int
 seq_delsel (struct msgs *mp, char *cp, int public, int zero)
@@ -30,8 +30,8 @@ seq_delsel (struct msgs *mp, char *cp, int public, int zero)
                return 0;
 
        /*
                return 0;
 
        /*
-        * Get the number for this sequence
-        */
+       ** Get the number for this sequence
+       */
        for (i = 0; mp->msgattrs[i]; i++) {
                if (!strcmp (mp->msgattrs[i], cp)) {
                        new_seq = 0;
        for (i = 0; mp->msgattrs[i]; i++) {
                if (!strcmp (mp->msgattrs[i], cp)) {
                        new_seq = 0;
@@ -40,13 +40,13 @@ seq_delsel (struct msgs *mp, char *cp, int public, int zero)
        }
 
        /*
        }
 
        /*
-        * If the zero flag is set, first add all existing
-        * messages in this folder to the sequence.
-        */
+       ** If the zero flag is set, first add all existing
+       ** messages in this folder to the sequence.
+       */
        if (zero) {
                /*
        if (zero) {
                /*
-                * create the sequence, if necessary
-                */
+               ** create the sequence, if necessary
+               */
                if (new_seq) {
                        if (i >= NUMATTRS) {
                                advise (NULL, "only %d sequences allowed (no room for %s)!", NUMATTRS, cp);
                if (new_seq) {
                        if (i >= NUMATTRS) {
                                advise (NULL, "only %d sequences allowed (no room for %s)!", NUMATTRS, cp);
@@ -59,8 +59,8 @@ seq_delsel (struct msgs *mp, char *cp, int public, int zero)
                        mp->msgattrs[i + 1] = NULL;
                }
                /*
                        mp->msgattrs[i + 1] = NULL;
                }
                /*
-                * now add sequence bit to all existing messages
-                */
+               ** now add sequence bit to all existing messages
+               */
                for (msgnum = mp->lowmsg; msgnum <= mp->hghmsg; msgnum++) {
                        if (does_exist (mp, msgnum))
                                add_sequence (mp, i, msgnum);
                for (msgnum = mp->lowmsg; msgnum <= mp->hghmsg; msgnum++) {
                        if (does_exist (mp, msgnum))
                                add_sequence (mp, i, msgnum);
@@ -75,24 +75,24 @@ seq_delsel (struct msgs *mp, char *cp, int public, int zero)
        }
 
        /*
        }
 
        /*
-        * Now clear the bit on all selected messages
-        */
+       ** Now clear the bit on all selected messages
+       */
        for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
                if (is_selected (mp, msgnum))
                        clear_sequence (mp, i, msgnum);
 
        /*
        for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
                if (is_selected (mp, msgnum))
                        clear_sequence (mp, i, msgnum);
 
        /*
-        * Set the public/private bit for this sequence.
-        */
+       ** Set the public/private bit for this sequence.
+       */
        if (public == 1)
                make_seq_public (mp, i);
        else if (public == 0)
                make_seq_private (mp, i);
        else if (new_seq) {
                /*
        if (public == 1)
                make_seq_public (mp, i);
        else if (public == 0)
                make_seq_private (mp, i);
        else if (new_seq) {
                /*
-                * If public == -1, then only set the
-                * public/private bit for new sequences.
-                */
+               ** If public == -1, then only set the
+               ** public/private bit for new sequences.
+               */
                if (is_readonly (mp))
                        make_seq_private (mp, i);
                else
                if (is_readonly (mp))
                        make_seq_private (mp, i);
                else
@@ -105,10 +105,10 @@ seq_delsel (struct msgs *mp, char *cp, int public, int zero)
 
 
 /*
 
 
 /*
- * Delete message from sequence.
- *
- * If error, return 0, else return 1.
- */
+** Delete message from sequence.
+**
+** If error, return 0, else return 1.
+*/
 
 int
 seq_delmsg (struct msgs *mp, char *cp, int msgnum)
 
 int
 seq_delmsg (struct msgs *mp, char *cp, int msgnum)