Reformated comments and long lines
[mmh] / uip / mhparam.c
index 328ea6b..f92a3ec 100644 (file)
@@ -1,13 +1,13 @@
 /*
- * mhparam.c -- print mh_profile values
- *
- * Originally contributed by
- * Jeffrey C Honig <Jeffrey_C_Honig@cornell.edu>
- *
- * 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.
- */
+** mhparam.c -- print mh_profile values
+**
+** Originally contributed by
+** Jeffrey C Honig <Jeffrey_C_Honig@cornell.edu>
+**
+** 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>
 
@@ -60,18 +60,18 @@ static struct proc procs [] = {
         { "showproc",      &showproc },
         { "version",       &version_num },
         { "whatnowproc",   &whatnowproc },
-        { "whomproc",      &whomproc },
         { "etcdir",        &mhetcdir },
         { "libdir",        &mhlibdir },
         { "backup-prefix", &backup_prefix },
         { "altmsg-link",   &altmsglink },
+        { "draft-folder",  &draftfolder },
         { NULL,            NULL },
 };
 
 
 /*
- * static prototypes
- */
+** static prototypes
+*/
 static char *p_find(char *);
 
 
@@ -148,12 +148,13 @@ main(int argc, char **argv)
                struct proc *ps;
 
                /*
-                * Print the current value of everything in
-                * procs array.  This will show their current
-                * value (as determined after context is read).
-                */
+               ** Print the current value of everything in
+               ** procs array.  This will show their current
+               ** value (as determined after context is read).
+               */
                for (ps = procs; ps->p_name; ps++)
-                       printf ("%s: %s\n", ps->p_name, *ps->p_field ? *ps->p_field : "");
+                       printf ("%s: %s\n", ps->p_name,
+                                       *ps->p_field ? *ps->p_field : "");
 
        } else {
                if (components < 0)