X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhparam.c;h=f92a3ecd85a09d81823a564109a0c12d65c238cf;hp=b18ddb4a072b382af5eb83940e63e65f5a97c901;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=18017df38ebb626f6eed6f339641fd1298c326e7 diff --git a/uip/mhparam.c b/uip/mhparam.c index b18ddb4..f92a3ec 100644 --- a/uip/mhparam.c +++ b/uip/mhparam.c @@ -1,13 +1,13 @@ /* - * mhparam.c -- print mh_profile values - * - * Originally contributed by - * Jeffrey C Honig - * - * 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 +** +** 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 @@ -64,13 +64,14 @@ static struct proc procs [] = { { "libdir", &mhlibdir }, { "backup-prefix", &backup_prefix }, { "altmsg-link", &altmsglink }, + { "draft-folder", &draftfolder }, { NULL, NULL }, }; /* - * static prototypes - */ +** static prototypes +*/ static char *p_find(char *); @@ -147,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)