diff --git a/doc/Makefile.am b/doc/Makefile.am index 905ef10..ca0de98 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -3,7 +3,7 @@ EXTRA_DIST = doxygen.cfg.in footer.html header.html $(man_MANS) $(doxygen_DOX) doxygen_DOX = libcaca.dox user.dox migrating.dox tutorial.dox canvas.dox font.dox style.dox -man_MANS = caca-config.1 cacafire.1 cacaview.1 cacaserver.1 img2irc.1 cacaplay.1 +man_MANS = caca-config.1 cacafire.1 cacaview.1 cacaserver.1 img2txt.1 cacaplay.1 if BUILD_DOCUMENTATION htmldoc_DATA = html/doxygen.css diff --git a/doc/cacaview.1 b/doc/cacaview.1 index 07b1469..03b8e91 100644 --- a/doc/cacaview.1 +++ b/doc/cacaview.1 @@ -51,6 +51,6 @@ yet to load an image from .B cacaview it is completely useless when run without an argument. .SH SEE ALSO -img2irc(1) +img2txt(1) .SH AUTHOR This manual page was written by Sam Hocevar . diff --git a/src/img2txt.c b/src/img2txt.c index e8f3056..067e255 100644 --- a/src/img2txt.c +++ b/src/img2txt.c @@ -62,7 +62,7 @@ static void usage(int argc, char **argv) fprintf(stderr, "\t\t\tutf8 : UTF8 with CR\n"); fprintf(stderr, "\t\t\tutf8 : UTF8 with CRLF (MS Windows)\n"); fprintf(stderr, "\t\t\thtml : HTML with CSS and DIV support\n"); - fprintf(stderr, "\t\t\thtml : Pure HTML3 with tables\n"); + fprintf(stderr, "\t\t\thtml3 : Pure HTML3 with tables\n"); fprintf(stderr, "\t\t\tirc : IRC with ctrl-k codes\n"); fprintf(stderr, "\t\t\tps : Postscript\n"); fprintf(stderr, "\t\t\tsvg : Scalable Vector Graphics\n");