Added -? and -h option for the compiler.

This commit is contained in:
Patrick Mast
2000-05-07 21:35:26 +00:00
parent 8d68c4da51
commit da551faae0
2 changed files with 16 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
20000507-23:30 CET Patrick Mast <harbour@PatrickMast.com>
* source/compiler/cmdcheck.c
+ Added -? and -h option for the compiler.
these options shouw the Harbour usage page.
20000507-13:35 GMT-8 Ron Pinkas <Ron@Profit-Master.com>
* include/hberrors.h

View File

@@ -187,6 +187,9 @@ void hb_compChkEnvironVar( char * szSwitch )
s++;
switch( *s )
{
case '?':
break;
case 'a':
case 'A':
hb_comp_bAutoMemvarAssume = TRUE;
@@ -316,6 +319,13 @@ void hb_compChkEnvironVar( char * szSwitch )
}
break;
/* NOTE:
h or H from HELP or help
*/
case 'h':
case 'H':
break;
/* NOTE:
It already has support for several include files
*/