diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3b1e51c8c6..14f286b9d7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-06-14 21:25 UTC+0300 Alexander Kresin + * source/rdd/dbfntx/dbfntx1.c + ! Bug fixed, related to seek with lLast and go bottom with scope set. + * source/lang/msgru866.c + * source/lang/msgrukoi.c + * source/lang/msgruwin.c + ! Bugs fixed. + 2003-06-14 15:48 UTC+0100 Antonio Linares * source/debug/debugger.prg ! Some enhancements by Ian Anderson, but modified as they were implemented diff --git a/harbour/source/lang/msgru866.c b/harbour/source/lang/msgru866.c index 41833e74d9..6728d1e838 100644 --- a/harbour/source/lang/msgru866.c +++ b/harbour/source/lang/msgru866.c @@ -81,7 +81,7 @@ static HB_LANG s_lang = "", "", "", - "" + "", /* Day names */ @@ -91,7 +91,7 @@ static HB_LANG s_lang = "।", "⢥", "⭨", - "㡡" + "㡡", /* CA-Cl*pper compatible natmsg items */ @@ -160,7 +160,7 @@ static HB_LANG s_lang = " ᨢ", "᢮ ᨢ", " ᨢ", - "ࠢ" + "ࠢ", /* Internal error names */ @@ -190,7 +190,7 @@ static HB_LANG s_lang = "९ ", "hb_xgrab requested to allocate zero bytes", "hb_xrealloc requested to resize to zero bytes", - "hb_xalloc requested to allocate zero bytes" + "hb_xalloc requested to allocate zero bytes", /* Texts */ diff --git a/harbour/source/lang/msgrukoi.c b/harbour/source/lang/msgrukoi.c index f8f39f3f04..f0beafd7fb 100644 --- a/harbour/source/lang/msgrukoi.c +++ b/harbour/source/lang/msgrukoi.c @@ -81,7 +81,7 @@ static HB_LANG s_lang = "", "", "", - "" + "", /* Day names */ @@ -91,7 +91,7 @@ static HB_LANG s_lang = "", "", "", - "" + "", /* CA-Cl*pper compatible natmsg items */ @@ -160,7 +160,7 @@ static HB_LANG s_lang = " ", " ", " ", - "" + "", /* Internal error names */ @@ -190,7 +190,7 @@ static HB_LANG s_lang = " ", "hb_xgrab requested to allocate zero bytes", "hb_xrealloc requested to resize to zero bytes", - "hb_xalloc requested to allocate zero bytes" + "hb_xalloc requested to allocate zero bytes", /* Texts */ diff --git a/harbour/source/lang/msgruwin.c b/harbour/source/lang/msgruwin.c index 6f0880e9a7..eb7db1a822 100644 --- a/harbour/source/lang/msgruwin.c +++ b/harbour/source/lang/msgruwin.c @@ -81,7 +81,7 @@ static HB_LANG s_lang = "", "", "", - "" + "", /* Day names */ @@ -91,7 +91,7 @@ static HB_LANG s_lang = "", "", "", - "" + "", /* CA-Cl*pper compatible natmsg items */ @@ -160,7 +160,7 @@ static HB_LANG s_lang = " ", " ", " ", - "" + "", /* Internal error names */ @@ -190,7 +190,7 @@ static HB_LANG s_lang = " ", "hb_xgrab requested to allocate zero bytes", "hb_xrealloc requested to resize to zero bytes", - "hb_xalloc requested to allocate zero bytes" + "hb_xalloc requested to allocate zero bytes", /* Texts */ diff --git a/harbour/source/rdd/dbfntx/dbfntx1.c b/harbour/source/rdd/dbfntx/dbfntx1.c index babdc19ea0..1cea3537a2 100644 --- a/harbour/source/rdd/dbfntx/dbfntx1.c +++ b/harbour/source/rdd/dbfntx/dbfntx1.c @@ -3113,7 +3113,8 @@ static ERRCODE ntxSeek( NTXAREAP pArea, BOOL bSoftSeek, PHB_ITEM pKey, BOOL bFin } else { - retvalue = SELF_GOTO( ( AREAP ) pArea, lRecno ); + hb_ntxTagKeyGoTo( pTag, BTTM_RECORD, NULL ); + retvalue = SELF_GOTO( ( AREAP ) pArea, pTag->CurKeyInfo->Xtra ); pArea->fFound = TRUE; return retvalue; }