2000-11-10 22:50 GMT+1 Maurilio Longo <maurilio.longo@libero.it>

This commit is contained in:
Maurilio Longo
2000-11-10 21:51:10 +00:00
parent 22e3a10265
commit 46ebd94e12
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2000-11-10 22:50 GMT+1 Maurilio Longo <maurilio.longo@libero.it>
* source/rtl/teditor.prg
! error in cursor handling when K_CTRL_PGDN or K_CTRL_END key was pressed.
2000-11-10 11:40 UTC+0800 Ron Pinkas <ron@profit-master.com>
* source/compiler/harbour.sly
+ Added support for early macro of expansion declared symbol for simple macro expression within CodeBlock (Like Clipper).

View File

@@ -625,7 +625,7 @@ METHOD MoveCursor(nKey) CLASS TEditor
::nCol := Max(::LineLen(::nRow), 1)
::nFirstRow := Max(::naTextLen - ::nNumRows + 1, 1)
::nFirstCol := Max(::nCol - ::nNumCols + 1, 1)
::SetPos(Min(::nBottom, ::naTextLen), Min(::nLeft + ::nCol - 1, ::nRight))
::SetPos(Min(::nTop + ::naTextLen - 1, ::nBottom), Min(::nLeft + ::nCol - 1, ::nRight))
::RefreshWindow()
case nKey == K_UP
@@ -739,7 +739,7 @@ METHOD MoveCursor(nKey) CLASS TEditor
endif
::nCol := Max(::LineLen(::nRow), 1)
::nFirstCol := Max(::nCol - ::nNumCols + 1, 1)
::SetPos(Min(::nBottom, ::naTextLen), Min(::nLeft + ::nCol - 1, ::nRight))
::SetPos(Min(::nTop + ::naTextLen - 1, ::nBottom), Min(::nLeft + ::nCol - 1, ::nRight))
::RefreshWindow()
otherwise