2003-06-14 21:25 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2003-06-14 17:23:29 +00:00
parent 8ed94c13a6
commit dabdee1440
5 changed files with 22 additions and 13 deletions

View File

@@ -8,6 +8,14 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-06-14 21:25 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* 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 <alinares@fivetechsoft.com>
* source/debug/debugger.prg
! Some enhancements by Ian Anderson, but modified as they were implemented

View File

@@ -81,7 +81,7 @@ static HB_LANG s_lang =
"‘¥­âï¡àì",
"Žªâï¡àì",
"<EFBFBD>®ï¡àì",
"„¥ª ¡àì"
"„¥ª ¡àì",
/* Day names */
@@ -91,7 +91,7 @@ static HB_LANG s_lang =
"‘। ",
"—¥â¢¥à£",
"<EFBFBD>ïâ­¨æ ",
"‘ã¡¡®â "
"‘ã¡¡®â ",
/* 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 =
"<EFBFBD>¥à¥¯®«­¥­¨¥ ¡ãä¥à  ¯ ¬ïâ¨",
"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 */

View File

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

View File

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

View File

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