See ChangeLog entry 19990630-17:45 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-06-30 22:58:11 +00:00
parent 85abd33f76
commit 0cd6defe1f
3 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
19990630-17:45 EDT David G. Holm <dholm@jsd-llc.com>
* source/rtl/errorapi.c
+ Added a default severity value of ES_ERROR in hb_errNew()
as a temporary workaround to the error severity problem.
* source/rtl/errorsys.prg
- Removed CHR(13)+CHR(10) from QOUT() of error message,
because Clipper doesn't have a blank line between the
error message and the error trace.
19990630-02:10 EDT David G. Holm <dholm@jsd-llc.com>
* harbour.b31
- Removed -DHARBOUR_STRICT_ANSI_C

View File

@@ -21,6 +21,8 @@ PHB_ITEM hb_errNew( void )
ItemCopy( pReturn, &stack.Return );
hb_errPutSeverity( pReturn, ES_ERROR );
return pReturn;
}

View File

@@ -32,7 +32,7 @@ static function DefError( oError )
cMessage += " (DOS Error " + LTrim(Str(oError:osCode)) + ")"
ENDIF
QOut( cMessage + Chr( 13 ) + Chr( 10 ))
QOut( cMessage)
do while ! Empty( ProcName( n ) )
QOut("Called from " + ProcName( n ) + ;