Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9908 → Rev 9909

/programs/develop/cedit/SRC/Lines.ob07
233,10 → 233,10
VAR
res: WCHAR;
BEGIN
IF i >= line.length THEN
IF (0 <= i) & (i < line.length) THEN
SYSTEM.GET(line.ptr + i*WCHAR_SIZE, res)
ELSE
res := 0X
ELSE
SYSTEM.GET(line.ptr + i*WCHAR_SIZE, res)
END
RETURN res
END getChar;