X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhparam.c;h=5cf7881c2f6ec3ce7cd7752bed02cddbe1828af8;hb=c2360569e1d8d3678e294eb7c1354cb8bf7501c1;hp=d9ba2a379161769cd634d7d012e46286142ef4ec;hpb=fd00a3b030ab9d854eac79641f7bf25e6538acc1;p=mmh diff --git a/uip/mhparam.c b/uip/mhparam.c index d9ba2a3..5cf7881 100644 --- a/uip/mhparam.c +++ b/uip/mhparam.c @@ -39,7 +39,6 @@ static struct proc procs [] = { { "mh-sequences", &mh_seq }, { "buildmimeproc", &buildmimeproc }, { "editor", &defaulteditor }, - { "faceproc", &faceproc }, { "fileproc", &fileproc }, { "foldprot", &foldprot }, { "incproc", &incproc }, @@ -91,34 +90,34 @@ main(int argc, char **argv) while ((cp = *argp++)) { if (*cp == '-') { switch (smatch(++cp, switches)) { - case AMBIGSW: - ambigsw(cp, switches); - done(1); - case UNKWNSW: - adios(NULL, "-%s unknown", cp); - - case HELPSW: - snprintf(buf, sizeof(buf), "%s [profile-components] [switches]", invo_name); - print_help(buf, switches, 1); - done(1); - case VERSIONSW: - print_version(invo_name); - done(1); - - case COMPSW: - components = 1; - break; - case NCOMPSW: - components = 0; - break; - - case ALLSW: - all = 1; - break; - - case DEBUGSW: - debug = 1; - break; + case AMBIGSW: + ambigsw(cp, switches); + done(1); + case UNKWNSW: + adios(NULL, "-%s unknown", cp); + + case HELPSW: + snprintf(buf, sizeof(buf), "%s [profile-components] [switches]", invo_name); + print_help(buf, switches, 1); + done(1); + case VERSIONSW: + print_version(invo_name); + done(1); + + case COMPSW: + components = 1; + break; + case NCOMPSW: + components = 0; + break; + + case ALLSW: + all = 1; + break; + + case DEBUGSW: + debug = 1; + break; } } else { comps[compp++] = cp;