See ChangeLog entry 19990630-17:45 EDT David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -21,6 +21,8 @@ PHB_ITEM hb_errNew( void )
|
||||
|
||||
ItemCopy( pReturn, &stack.Return );
|
||||
|
||||
hb_errPutSeverity( pReturn, ES_ERROR );
|
||||
|
||||
return pReturn;
|
||||
}
|
||||
|
||||
|
||||
@@ -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 ) + ;
|
||||
|
||||
Reference in New Issue
Block a user