> |
> | Michael.
> 
> 
> We could put a link in the FPC wiki too.
> 
> Yes I'm sure Thaddy will not mind at all..

He won't. I already talk to him from time to time.


I also still have a list of problems from Thaddy that he had to do for 2.0:

1)

procedure x(p:array of pchar);

begin

end;

x(['a','b']);

IOW some autoconversion problem

2)
constructs like

MOV EAX, [ECX].TRect.Bottom

Fail with: Trying to push memory location

3)

Works:

procedure TObj.Free;
begin
  if @Self <> nil then
    DoDestroy;
end;

doesn't work (while it apparantly should):

procedure TObj.Free;
begin
  if Self <> nil then
    DoDestroy;
end;


4)

procedure x (const str: string);
begin
  filewrite (filedescriptor,pchar(str+#13#10)^,length(str)+2);
end;


_______________________________________________
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to