+2009-03-30 Tollef Fog Heen <tfheen@err.no>
+
+ * popthelp.c (poptPrintUsage,poptPrintHelp): Add [LIBRARIES] to
+ help output. Debian #389066
+
2008-04-28 Tollef Fog Heen <tfheen@err.no>
* parse.c Add my name to the copyright header, mainly to prevent
showHelpIntro(con, f);
if (con->otherHelp)
- fprintf(f, " %s\n", con->otherHelp);
+ fprintf(f, " %s", con->otherHelp);
else
- fprintf(f, " %s\n", POPT_("[OPTION...]"));
+ fprintf(f, " %s", POPT_("[OPTION...]"));
+ fprintf(f, " [LIBRARIES]\n");
leftColWidth = maxArgWidth(con->options);
singleTableHelp(f, con->options, leftColWidth);
}
if (cursor > 79) fprintf(f, "\n ");
fprintf(f, " %s", con->otherHelp);
}
-
- fprintf(f, "\n");
+ fprintf(f, "\n [LIBRARIES]\n");
}
void poptSetOtherOptionHelp(poptContext con, const char * text) {