diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dc4eec22ee..2334e27daf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +20000419-11:36 GMT+1 Victor Szakats + - tests/test.prg + ! Removed file added without any ChangeLog info, and also + breaking the build process for GNU-make. + 20000419-10:37 GMT+1 Victor Szakats * ChangeLog diff --git a/harbour/tests/test.prg b/harbour/tests/test.prg deleted file mode 100644 index 4b39cfc820..0000000000 --- a/harbour/tests/test.prg +++ /dev/null @@ -1,26 +0,0 @@ -#include "setcurs.ch" - -#define ALTD_DISABLE 0 -#define ALTD_ENABLE 1 - -static s_oDebugger -static s_lExit := .F. - -function AltD( nAction ) - static s_lEnabled := .t. - - do case - case nAction == nil - if s_lEnabled - s_lExit := .f. - __dbgEntry( ProcLine( 2 ) ) - endif - - case nAction == ALTD_DISABLE - s_lEnabled := .f. - - case nAction == ALTD_ENABLE - s_lEnabled := .t. - endcase - -return nil