From b7a415ec0e358967fc39c046fb72f29e227e7104 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 6 Aug 2006 19:43:57 +0000 Subject: It builds with build again, and even the tests now. woo! --- src/paramproc.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/paramproc.cpp') diff --git a/src/paramproc.cpp b/src/paramproc.cpp index 90fa9ac..5cb815c 100644 --- a/src/paramproc.cpp +++ b/src/paramproc.cpp @@ -463,7 +463,14 @@ int ParamProc::help( int argc, char *argv[] ) printf(" "); if( (*i)->cChar ) { - printf("-%c, ", (*i)->cChar ); + if( (*i)->sWord.getString() ) + { + printf("-%c, ", (*i)->cChar ); + } + else + { + printf("-%c ", (*i)->cChar ); + } } else { -- cgit v1.2.3