]> mj.ucw.cz Git - libucw.git/commitdiff
CF_USAGE_TAB can be used to insert more tabs to the default help message.
authorMartin Mares <mj@ucw.cz>
Tue, 24 Feb 2004 23:08:49 +0000 (23:08 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 24 Feb 2004 23:08:49 +0000 (23:08 +0000)
lib/conf.h

index cb3e9e1d7d326520ae8642c5432b1212d838ab4a..55589c4eeca00c454d817bd420c6eca0246c5ffd 100644 (file)
@@ -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;