--- psiconv/trunk/program/psiconv/psiconv.c 1999/10/03 21:10:47 2 +++ psiconv/trunk/program/psiconv/psiconv.c 1999/10/13 19:15:59 17 @@ -59,6 +59,7 @@ puts(" HTML (default)"); puts(" HTML4"); puts(" ASCII"); + puts(" RTF"); } void print_version(void) @@ -176,6 +177,10 @@ psiconv_gen_html4(f,file); else if (! strcmp(type,"ASCII")) psiconv_gen_txt(f,file); + else if (! strcmp(type,"RTF")) + psiconv_gen_rtf(f,file); + else if (! strcmp(type,"IMAGE")) + psiconv_gen_image(f,file); else { fprintf(stderr,"Unknown output type: `%s'\n",type); exit(1);