[fpc-pascal] Updating wiki translations in español (es)

2016-05-06 Thread H . Gabriel Máculus
Please send me any correction or error detected es: Cualquier error que encuentren envienme un mail y sera corregido cuanto antes. http://wiki.freepascal.org/Function/es Thank's -- H. Gabriel Máculus http://twitter.com/gabrielix - https://prism-break.org/ _

[fpc-pascal] Any unit tests for the FastHTMLParser unit in FCL - chm package?

2016-05-06 Thread Graeme Geldenhuys
As the subject line says, are there any existing unit tests for the FastHTMLParser unit found in the “chm” package of the FCL? My initial search in FCL suggests that there are no existing unit tests for that unit. Is this correct? Anyway, I found a bug with the parser, and started writing some un

Re: [fpc-pascal] TThread and WaitFor

2016-05-06 Thread Sven Barth
Am 06.05.2016 11:34 schrieb "LacaK" : > > Hi *, > is this safe: > > FThread.Terminate; // what if here is switched FThread to execution and will immediately end his Execute procedure > FThread.WaitFor; // what happens if FThread is freed before WaitFor is executed > > ? > > assuming, that FThread h

[fpc-pascal] TThread and WaitFor

2016-05-06 Thread LacaK
Hi *, is this safe: FThread.Terminate; // what if here is switched FThread to execution and will immediately end his Execute procedure FThread.WaitFor; // what happens if FThread is freed before WaitFor is executed ? assuming, that FThread has FreeOnTerminate := True; (looking into source co