From: Martin Mares Date: Tue, 24 Feb 2004 23:08:49 +0000 (+0000) Subject: CF_USAGE_TAB can be used to insert more tabs to the default help message. X-Git-Tag: holmes-import~1112 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=c49e8f00da4d1f214621a19364c64e30fa4afc7c;p=libucw.git CF_USAGE_TAB can be used to insert more tabs to the default help message. --- diff --git a/lib/conf.h b/lib/conf.h index cb3e9e1d..55589c4e 100644 --- a/lib/conf.h +++ b/lib/conf.h @@ -80,9 +80,10 @@ byte *cf_parse_double(byte *value, double *varp); {"set", 1, 0, 'S'},\ {"config", 1, 0, 'C'}, #define CF_NO_LONG_OPTS (const struct option []){ CF_LONG_OPTS { NULL, 0, 0, 0 } } +#define CF_USAGE_TAB "" #define CF_USAGE \ -"-S, --set sec.item=val\tManual setting of a configuration item\n\ --C, --config filename\tOverwrite default config filename\n" +"-S, --set sec.item=val\t" CF_USAGE_TAB "Manual setting of a configuration item\n\ +-C, --config filename\t" CF_USAGE_TAB "Overwrite default config filename\n" extern byte *cfdeffile;