diff options
author | Rob Landley <rob@landley.net> | 2013-04-14 21:43:22 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-04-14 21:43:22 -0500 |
commit | 36ffc5aa3e6bfcab5d628208f4f1508f9b1c2620 (patch) | |
tree | 02fa7a68fe53808c79ce72f9ba21beb0b9908214 /lib/lib.c | |
parent | 26c0045a6eb061e180f58b6b4c029a5df5a2818e (diff) | |
download | toybox-36ffc5aa3e6bfcab5d628208f4f1508f9b1c2620.tar.gz |
Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure.
Diffstat (limited to 'lib/lib.c')
-rw-r--r-- | lib/lib.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -52,11 +52,7 @@ void error_exit(char *msg, ...) { va_list va; - if (CFG_HELP && toys.exithelp) { - *toys.optargs=*toys.argv; - USE_HELP(help_main();) // dear gcc: shut up. - fprintf(stderr,"\n"); - } + if (CFG_TOYBOX_HELP && toys.exithelp) show_help(); va_start(va, msg); verror_msg(msg, 0, va); |