Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9980 → Rev 9981

/programs/network/ircc/ircc.asm
13,7 → 13,7
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
version equ '0.35b'
version equ '0.35c'
 
; connection status
STATUS_DISCONNECTED = 0
/programs/network/ircc/userparser.inc
23,7 → 23,7
mov esi, input_text
mov edi, user_command
call recode ; Convert to UTF-8
mov word[edi], 0x0a0d ; terminate the line
mov byte[edi], 0x0 ; Terminate string with \0
sub edi, user_command
mov [user_command.size], edi
 
658,9 → 658,9
 
mov esi, [user_command.size]
mov eax, [user_command.size]
add eax, user_command+1
add eax, user_command
mov word[eax], 0x0a0d
inc esi
inc esi ; Skip / add \r\n
mcall send, [socketnum], user_command+1, , 0
 
ret