Hi,
On Mon, 27 Jul 2009, Stephen Boyd wrote:
quoted hunk ↗ jump to hunk
Johannes Schindelin wrote:
quoted
[PATCH] parse-opt: optionally show "--no-" option string
It is usually better to have positive options, to avoid confusing
double negations. However, sometimes it is desirable to show the
negative option in the help.
Introduce the flag PARSE_OPT_NEGHELP to do that.
Perhaps with this documentation throw in?
diff --git a/parse-options.h b/parse-options.h
index 90e577d..14162e9 100644
--- a/parse-options.h
+++ b/parse-options.h
@@ -81,6 +81,9 @@ typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
* PARSE_OPT_LITERAL_ARGHELP: says that argh shouldn't be enclosed in brackets
* (i.e. '<argh>') in the help message.
* Useful for options with multiple parameters.
+ * PARSE_OPT_NEGHELP: says that the long option should always be shown with
+ * the --no prefix in the usage message. Sometimes
+ * useful for users of OPTION_NEGBIT.
*
* `callback`::
* pointer to the callback to use for OPTION_CALLBACK.
Thanks.
Ciao,
Dscho