diff options
author | midipix <writeonce@midipix.org> | 2016-03-06 07:07:33 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-06 09:21:24 -0500 |
commit | 913c07d240396cdd266aeff300c132048525e33d (patch) | |
tree | 705e28fdb3227c0f2c96c611834a02f03551c99c /src | |
parent | 93e42079d43bea6e89f31d8597086c3d7ca1ec02 (diff) | |
download | sofort-913c07d240396cdd266aeff300c132048525e33d.tar.bz2 sofort-913c07d240396cdd266aeff300c132048525e33d.tar.xz |
argv.h: usage screen generator: fix notation of purely hybrid options.
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/argv/argv.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h index 68e3fba..4f037fb 100644 --- a/src/internal/argv/argv.h +++ b/src/internal/argv/argv.h @@ -858,17 +858,27 @@ static void argv_usage( if (fshort) fprintf(file,"%s-%-*c",indent,(int)(optlen-solen),option->short_name); else if (flong) - fprintf(file,"%s--%-*s",indent,(int)(optlen-lolen),option->long_name); + fprintf(file, + (option->flags & ARGV_OPTION_HYBRID_ONLY) + ? "%s -%-*s" + : "%s--%-*s", + indent,(int)(optlen-lolen),option->long_name); else { if (option->short_name && option->long_name) - fprintf(file,"%s-%c,--%-*s", + fprintf(file, + (option->flags & ARGV_OPTION_HYBRID_ONLY) + ? "%s-%c, -%-*s" + : "%s-%c,--%-*s", indent,option->short_name, (int)(optlen-slolen),option->long_name); else if (option->short_name) fprintf(file,"%s-%-*c", indent,(int)(optlen-solen),option->short_name); else - fprintf(file,"%s%3s--%-*s", + fprintf(file, + (option->flags & ARGV_OPTION_HYBRID_ONLY) + ? "%s%3s -%-*s" + : "%s%3s--%-*s", indent,"", (int)(optlen-slolen),option->long_name); } |