forked from KolibriOS/kolibrios
Tinypad - fix r.4487, remove unnecessary code and correction documentation.
git-svn-id: svn://kolibrios.org@4505 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
f9c606dc62
commit
39ffaa657e
@ -1,6 +1,10 @@
|
||||
|
||||
HISTORY:
|
||||
|
||||
4.0.8 (22/01/2014, Marat Zakiyanov aka Mario79, aka Mario)
|
||||
new features:
|
||||
- Support for kernel clipboard (f.54)
|
||||
|
||||
4.0.7 (21/11/2013, Sergey Tyrnov aka tserj)
|
||||
new feature:
|
||||
- Run in debugger by F10
|
||||
|
@ -2,13 +2,14 @@
|
||||
; project name: TINYPAD
|
||||
; compiler: flat assembler 1.67.21
|
||||
; memory to compile: 3.0/9.0 MBytes (without/with size optimizations)
|
||||
; version: SVN (4.0.7)
|
||||
; last update: 2013-11-21 (Nov 21, 2013)
|
||||
; minimal kernel: revision #823 (svn://kolibrios.org/kernel/trunk)
|
||||
; version: SVN (4.0.8)
|
||||
; last update: 2014-01-22 (Jan 22, 2014)
|
||||
; minimal kernel: revision #4199 (svn://kolibrios.org/kernel/trunk)
|
||||
;-----------------------------------------------------------------------------
|
||||
; originally by: Ville Michael Turjanmaa >> villemt@aton.co.jyu.fi
|
||||
; maintained by: Mike Semenyako >> mike.dld@gmail.com
|
||||
; Ivan Poddubny >> ivan-yar@bk.ru
|
||||
; Marat Zakiyanov aka Mario79
|
||||
;-----------------------------------------------------------------------------
|
||||
; TODO (4.1.0):
|
||||
; - add vertical selection, undo, goto position, overwrite mode, smart tabulation
|
||||
@ -35,7 +36,7 @@ include 'tinypad.inc'
|
||||
|
||||
header '01',1,@CODE,TINYPAD_END,STATIC_MEM_END,MAIN_STACK,@PARAMS,ini_path
|
||||
|
||||
APP_VERSION equ 'SVN (4.0.7)'
|
||||
APP_VERSION equ 'SVN (4.0.8)'
|
||||
|
||||
TRUE = 1
|
||||
FALSE = 0
|
||||
|
@ -219,16 +219,8 @@ convert_clipboard_buf_to_copy_buf:
|
||||
mov eax,edi
|
||||
sub eax,ebx
|
||||
sub eax,6
|
||||
.@@111:
|
||||
mov [ebx],eax
|
||||
test edx,edx
|
||||
jz @f
|
||||
mov [ebx],eax ; size of current string
|
||||
|
||||
test eax,eax
|
||||
jz @f
|
||||
|
||||
mov [ebx+4],word EDITOR_LINE_FLAG_MOFIFIED
|
||||
@@:
|
||||
mov ebx,edi
|
||||
add edi,6
|
||||
inc edx
|
||||
|
Loading…
Reference in New Issue
Block a user