See ChangeLog entry 19990617-00:00 EDT David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
19990617-00:00 EDT David G. Holm <dholm@jsd-llc.com>
|
||||
* include/errorapi.h
|
||||
- Added "#include <extend.h>"
|
||||
* source/rtl/environ.c
|
||||
- Added "#include <errorapi.h>
|
||||
- Converted all _errFunctions to hb_errFunctions
|
||||
* source/rtl/math.c
|
||||
- Added missing _errFunction to hb_errFunction conversions
|
||||
|
||||
19990616-23:30 EDT David G. Holm <dholm@jsd-llc.com>
|
||||
* makefile.icc
|
||||
- Added or corrected various include file dependencies
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
// compatible
|
||||
//-
|
||||
|
||||
#include <extend.h>
|
||||
#include "error.ch"
|
||||
|
||||
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include <errorapi.h>
|
||||
|
||||
#ifdef __IBMCPP__
|
||||
#define INCL_DOSMISC
|
||||
#endif
|
||||
@@ -246,10 +248,10 @@ HARBOUR HB___RUN( void )
|
||||
}
|
||||
else
|
||||
{
|
||||
PHB_ITEM pError = _errNew();
|
||||
_errPutDescription( pError, "RUN: Incorrect number of arguments" );
|
||||
_errLaunch( pError );
|
||||
_errRelease( pError );
|
||||
PHB_ITEM pError = hb_errNew();
|
||||
hb_errPutDescription( pError, "RUN: Incorrect number of arguments" );
|
||||
hb_errLaunch( pError );
|
||||
hb_errRelease( pError );
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -278,10 +278,10 @@ FUNCTION MOD(cl_num, cl_base)
|
||||
}
|
||||
else
|
||||
{
|
||||
PHB_ITEM pError = _errNew();
|
||||
_errPutDescription(pError, "Argument error: %");
|
||||
_errLaunch(pError);
|
||||
_errRelease(pError);
|
||||
PHB_ITEM pError = hb_errNew();
|
||||
hb_errPutDescription(pError, "Argument error: %");
|
||||
hb_errLaunch(pError);
|
||||
hb_errRelease(pError);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user