From cc57d998b6a7314a86ef436bb028de45127ac2ec Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 9 Aug 2008 15:52:42 +0000 Subject: [PATCH] 2008-08-09 17:52 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * doc/whatsnew.txt * include/hbextern.ch * source/vm/runner.c - Completely removed __HRBDOFU(). Users should use DO() instead. --- harbour/ChangeLog | 6 ++++++ harbour/doc/whatsnew.txt | 2 +- harbour/include/hbextern.ch | 1 - harbour/source/vm/runner.c | 5 ----- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 94aaba5b43..07efa29f19 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-08-09 17:52 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * doc/whatsnew.txt + * include/hbextern.ch + * source/vm/runner.c + - Completely removed __HRBDOFU(). Users should use DO() instead. + 2008-08-09 17:31 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/extrap.c * deallocate alternative signal stack on exit diff --git a/harbour/doc/whatsnew.txt b/harbour/doc/whatsnew.txt index 60fbd8df7b..ea9d2f5043 100644 --- a/harbour/doc/whatsnew.txt +++ b/harbour/doc/whatsnew.txt @@ -60,7 +60,7 @@ Core __HRBLOAD -> HB_HRBLOAD __HRBUNLOAD -> HB_HRBUNLOAD __HRBDO -> HB_HRBDO - __HRBDOFU -> HB_HRBDO + __HRBDOFU -> (deleted, please use DO()) __HRBGETFU -> HB_HRBGETFUNSYM (old function names still function) diff --git a/harbour/include/hbextern.ch b/harbour/include/hbextern.ch index c225d2d0d1..c0e462b34b 100644 --- a/harbour/include/hbextern.ch +++ b/harbour/include/hbextern.ch @@ -522,7 +522,6 @@ EXTERNAL __HRBLOAD EXTERNAL __HRBDO EXTERNAL __HRBUNLOAD EXTERNAL __HRBGETFU -EXTERNAL __HRBDOFU EXTERNAL __ERRINHANDLER EXTERNAL __ERRRT_BASE diff --git a/harbour/source/vm/runner.c b/harbour/source/vm/runner.c index bc121e166f..edcf979d15 100644 --- a/harbour/source/vm/runner.c +++ b/harbour/source/vm/runner.c @@ -782,11 +782,6 @@ HB_FUNC( __HRBDO ) HB_FUNC_EXEC( HB_HRBDO ); } -HB_FUNC( __HRBDOFU ) -{ - HB_FUNC_EXEC( HB_HRBDO ); -} - HB_FUNC( __HRBGETFU ) { HB_FUNC_EXEC( HB_HRBGETFUNSYM );