20000419-11:36 GMT+1 Victor Szakats <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
2000-04-19 09:32:56 +00:00
parent be3af953c8
commit 6fd8796f95
2 changed files with 5 additions and 26 deletions

View File

@@ -1,3 +1,8 @@
20000419-11:36 GMT+1 Victor Szakats <info@szelvesz.hu>
- 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 <info@szelvesz.hu>
* ChangeLog

View File

@@ -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