diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f5b7d7f4fc..669b8d4672 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,15 @@ The license applies to all entries newer than 2009-04-28. */ +2010-06-23 13:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * src/vm/runner.c + * Changed to use hex notation instead of octal in recent change. + (see: 2010-02-20 01:03 UTC+0100, 2009-06-05 20:59 UTC+0200, + 2008-11-09 11:48 UTC+0100) + + * include/hbdefs.h + - Deleted HB_RECNO. + 2010-06-23 12:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbextern.ch * harbour/src/vm/runner.c diff --git a/harbour/include/hbdefs.h b/harbour/include/hbdefs.h index c9c70457cf..c3ac748c33 100644 --- a/harbour/include/hbdefs.h +++ b/harbour/include/hbdefs.h @@ -258,7 +258,7 @@ typedef unsigned int HB_UINT; #endif /* Harbour abstract types */ -typedef HB_RECNO HB_ULONG; +/* ...add them here... */ /* Convenience */ typedef HB_UCHAR HB_BYTE; diff --git a/harbour/src/vm/runner.c b/harbour/src/vm/runner.c index adc3685c46..27eeef4ca9 100644 --- a/harbour/src/vm/runner.c +++ b/harbour/src/vm/runner.c @@ -90,7 +90,7 @@ typedef struct PHB_SYMBOLS pModuleSymbols; } HRB_BODY, * PHRB_BODY; -static const char s_szHead[ 4 ] = { '\300', 'H', 'R', 'B' }; +static const char s_szHead[ 4 ] = { '\xC0', 'H', 'R', 'B' }; #define SYM_NOLINK 0 /* symbol does not have to be linked */