q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f2c9fcf5f18fcf008dbb8cea50acfc5370eab83d
commit f2c9fcf5f18fcf008dbb8cea50acfc5370eab83d Author: Daniel Kolesa <[email protected]> Date: Fri Jan 24 10:12:41 2014 +0000 a small ecore_getopt bugfix --- src/lib/ecore/ecore_getopt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore/ecore_getopt.c b/src/lib/ecore/ecore_getopt.c index 7a1505f..8c978f1 100644 --- a/src/lib/ecore/ecore_getopt.c +++ b/src/lib/ecore/ecore_getopt.c @@ -641,7 +641,8 @@ _ecore_getopt_help_desc_categories(FILE *fp, /* do not print available categories if none available */ for (; !_ecore_getopt_desc_is_sentinel(desc); desc++) - if (desc->action == ECORE_GETOPT_ACTION_CATEGORY) goto hascat; + if (desc->action == ECORE_GETOPT_ACTION_CATEGORY && desc->longname) + goto hascat; return _ecore_getopt_help_line(fp, base, total, used, _("No categories available."), --
