2010-15-15 14:29 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* contrib/hbide/ideedit.prg
    ! Fixed: copy with Sh+Left was not working ok when employed backward in stream mode.
This commit is contained in:
Pritpal Bedi
2010-05-15 21:27:37 +00:00
parent 7b9478df7e
commit 52f91ee823
2 changed files with 7 additions and 3 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-15-15 14:29 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/ideedit.prg
! Fixed: copy with Sh+Left was not working ok when employed backward in stream mode.
2010-05-15 22:21 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* doc/howtosvn.txt
* More clearing up.

View File

@@ -765,10 +765,10 @@ METHOD IdeEdit:copyBlockContents( aCord )
IF nMode == selectionMode_stream
IF i == nT .AND. i == nB
cLine := substr( cLine, aCord[ 2 ] + 1, nW )
ELSEIF i == nT
cLine := substr( cLine, min( aCord[ 2 ], aCord[ 4 ] ) + 1, nW )
ELSEIF i == aCord[ 1 ]
cLine := substr( cLine, aCord[ 2 ] + 1 )
ELSEIF i == nB
ELSEIF i == aCord[ 3 ]
cLine := substr( cLine, 1, aCord[ 4 ] + 1 )
ENDIF