diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7419f61c0b..41ae5a946e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,14 @@ The license applies to all entries newer than 2009-04-28. */ +2012-10-04 13:25 UTC+0200 Viktor Szakats (harbour syenar.net) + * extras/httpsrv/uhttpd.prg + * tests/db_brows.prg + * tests/inherit.prg + * tests/stripem.prg + - deleted now unnecessary SET EXACT settings. There is none + of those in Harbour repo anymore. + 2012-10-04 13:20 UTC+0200 Viktor Szakats (harbour syenar.net) - tests/testtok.prg - deleted obsolete token test code diff --git a/harbour/extras/httpsrv/uhttpd.prg b/harbour/extras/httpsrv/uhttpd.prg index 7a26158528..a64ae0b8c4 100644 --- a/harbour/extras/httpsrv/uhttpd.prg +++ b/harbour/extras/httpsrv/uhttpd.prg @@ -2155,7 +2155,6 @@ STATIC PROCEDURE SysSettings() SET DATE ANSI SET BELL OFF SET DELETED ON - SET EXACT OFF SET CONFIRM ON SET ESCAPE ON SET WRAP ON diff --git a/harbour/tests/db_brows.prg b/harbour/tests/db_brows.prg index e8f84df682..57a7750b6f 100644 --- a/harbour/tests/db_brows.prg +++ b/harbour/tests/db_brows.prg @@ -184,7 +184,6 @@ FUNCTION DBFLIST( mslist, x1, y1, x2, y2, title, maskey ) predxx := predit := iif( AScan( LI_MSED, 3 ) != 0, 3, iif( AScan( LI_MSED, 2 ) != 0, 2, 1 ) ) ENDIF SET CURSOR ( predit > 1 ) - SET EXACT OFF IF LI_LSOHR wndbuf := SaveScreen( LI_Y1, LI_X1, LI_Y2, LI_X2 ) ENDIF diff --git a/harbour/tests/inherit.prg b/harbour/tests/inherit.prg index 7aa1495f8d..7d42874932 100644 --- a/harbour/tests/inherit.prg +++ b/harbour/tests/inherit.prg @@ -24,8 +24,6 @@ PROCEDURE Main() LOCAL oTo LOCAL cOut - Set( _SET_EXACT, .T. ) - oFrom := TOnTop() :New( "hello.prg", "R" ) oTo := TTextFile():New( "hello.out", "W" ) diff --git a/harbour/tests/stripem.prg b/harbour/tests/stripem.prg index d4aec9b76e..e461f04daf 100644 --- a/harbour/tests/stripem.prg +++ b/harbour/tests/stripem.prg @@ -30,7 +30,6 @@ PROCEDURE Main( cFrom, cTo ) LOCAL oTo LOCAL cOut - SET( _SET_EXACT, .T. ) cFrom := Default( cFrom, "strip.prg" ) cTo := Default( cTo, "strip.out" )