Well, you know me.  I'd use a macro for the number value and another macro
pair to stringify it for the help string:

#define VAL 5
#define VAL_STRING STRINGIFY(VAL)
#define STRINGIFY(x) #x

... "foo " VAL_STRING " seconds" ...

Or maybe you need:

#define STRINGIFY(x) STRINGIFY_1(x)
#define STRINGIFY_1(x) #x

I can't even recall off hand.

You could produce a patch to fix this and then we would say "go ahead and
check it in", and then you could check it in, and then it would be checked in.


Reply via email to