Neil Santos wrote:
Okay, got it; thanks to Emil Jerabek and Frank Heckenbach (though Frank quoted an e-mail from a CBFalconer that I don't seem to have received.
Maybe somethihng like this?
http://gnu-pascal.de/crystal/gpc/en/mail9822.html
Otherwise there might have been a (temporary?) mail transport problem. You can always use the archives. If there seems to be a permanent problem which you cannot explain, you might want to contact the list maintainer gpc-owner@gnu.de.
Self.AFunction := RETURN_CODE;
compiles cleanly. I was wondering if I'm using Self here as I should;
You figured it out already. Actually you can omit `Self.' (within a method, but that's where `Self' only works anyway) unless you have a local identifier `AFunction' shadowing the field (which most often happens within a `with' clause with an object of the same or "similar" type).
RTFM'ing wasn't much help (`Self' is still under construction), and Google wasn't very helpful on this, either.
The incomplete reference manual is one of the biggest "bugs" currently. If you like to help, any contribution is welcome.
Frank