* examples/hbdoc2/hbdoc2.prg

* bug fix when handling "--help" command line
This commit is contained in:
April White
2009-09-19 14:33:06 +00:00
parent 22d6978189
commit 2e1d968cc7
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-09-19 16:31 UTC+0600 April White (april users.sourceforge.net)
* examples/hbdoc2/hbdoc2.prg
* bug fix when handling "--help" command line
2009-09-19 16:17 UTC+0600 April White (april users.sourceforge.net)
* doc/class_tp.txt
* doc/hdr_tpl.txt

View File

@@ -959,7 +959,7 @@ PROCEDURE ShowHelp( cExtraMessage, aArgs )
LOCAL aHelp
DO CASE
CASE Empty( aArgs ) .OR. Len( aArgs ) == 0 .OR. Empty( aArgs[ 1 ] )
CASE Empty( aArgs ) .OR. Len( aArgs ) <= 1 .OR. Empty( aArgs[ 1 ] )
aHelp = { ;
cExtraMessage, ;
"Harbour Document Extractor No. 2 (" + Version() + ")", ;