home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
tema
/
602propc
/
disk12
/
data.12
/
WINTEXT
/
MAKRA
/
SOURCES
/
CLEANP.TXT
< prev
next >
Wrap
Text File
|
1996-12-17
|
530b
|
24 lines
program Spojenφ_odstavc∙;
var
iStartLine : integer;
begin
if (IsBlockSelected) then begin
iStartLine := GetSelStartLine;
if (GetCaretLine <= iStartLine) then begin
iStartLine := GetSelStartLine;
ChangeSelRanges;
end;
UnselectBlock;
while PrevPara and (GetCaretLine <> iStartLine) do begin
BackspaceDelete;
InsertChar(' ');
end; { while }
end
else begin
CaretHome;
while NextPara do begin BackspaceDelete; InsertChar(' ');
end;
end;
end.