[Lazarus] Editor tabs still visible after closing them??

2009-10-14 Thread Graeme Geldenhuys
Hi, I'm using Lazarus 0.9.29 (trunk from yesterday). This has been happening for the last few updates I have gotten, even on 0.9.28 (fixes branch). Ignore the fact that my tabs are on the left - this same issue applies if the tabs are at the top (normal position). You click the x to close the

Re: [Lazarus] A report on documentation editors

2009-10-14 Thread Mattias Gaertner
On Wed, 14 Oct 2009 18:53:38 +1100 Alexander Klenin kle...@gmail.com wrote: [...] Also, not directly related bug: 1) Open components/tachart/TACustomSeries unit 2) Hover mouse over TChartSeries.Add function name in implementation section (line 196) = Hint is duplicated in the tooltip 3)

Re: [Lazarus] A report on documentation editors

2009-10-14 Thread Vincent Snijders
Mattias Gaertner schreef: No such error here. But there is no xml check in the editor yet and therefore any syntax error raises an exception. It now catches EXMLReadError exceptions. Does this mean that http://bugs.freepascal.org/view.php?id=13240 has been fixed? Vincent --

[Lazarus] fpchmod illegal character

2009-10-14 Thread David Touzeau
I try to set fpchmod(path,775); by compilator generate error zsystem.pas(465,17) Fatal: illegal character '' ($26) how to force using character in fpchmod function ? best regards -- ___ Lazarus mailing list

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread Bart
Hi David, Look at the function definition: Function FpChmod (path : AnsiString; Mode : TMode): cInt; inline; The second parameter must be of type TMode, so you cannot use a in it. What does 755 do if you run chmode from terminal? (What is the meaning of the ampersand in front of the 755

Re: [Lazarus] Help needed for conference...

2009-10-14 Thread Mehmet Erol Sanliturk
Graeme Geldenhuys wrote: 2009/10/14 Mehmet Erol Sanliturk sanlit...@ttmail.com: Trying to compile a source written with Delphi specific features by Lazarus by using ifdef-else directives to distinguish Lazarus and Delphi specific parts is to generate a source which is a nightmare to maintain .

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread David Touzeau
Hum so i can convert 775 or 666 chmod number privilege to an octal parameter in order to avoid this illegal character error I'm dev in Unix (linux) Message initial De: Vincent Snijders vsnijd...@vodafonevast.nl Reply-to: Lazarus mailing list

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread Vincent Snijders
David Touzeau schreef: Hum so i can convert 775 or 666 chmod number privilege to an octal It is already an octal number. parameter in order to avoid this illegal character error I'm dev in Unix (linux) I don't know why your compiler gives this error: writeln(IntToStr(755)); gives no

Re: [Lazarus] A report on documentation editors

2009-10-14 Thread Mattias Gärtner
Zitat von Vincent Snijders vsnijd...@vodafonevast.nl: Mattias Gaertner schreef: No such error here. But there is no xml check in the editor yet and therefore any syntax error raises an exception. It now catches EXMLReadError exceptions. Does this mean that

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread Mattias Gärtner
Zitat von Vincent Snijders vsnijd...@vodafonevast.nl: David Touzeau schreef: Hum so i can convert 775 or 666 chmod number privilege to an octal It is already an octal number. parameter in order to avoid this illegal character error I'm dev in Unix (linux) I don't know why your compiler

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread David Touzeau
OK many thanks In order to waiting the latest linux Lazarus release with this fix. Is there a workaround ? How can i set the parameters without character Message initial De: Mattias Gärtner nc-gaert...@netcologne.de Reply-to: Lazarus mailing list

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread Mattias Gaertner
On Wed, 14 Oct 2009 19:25:02 +0200 David Touzeau da...@touzeau.eu wrote: OK many thanks In order to waiting the latest linux Lazarus release with this fix. Is there a workaround ? How can i set the parameters without character 765 = 7*64+6*8+5 Mattias --

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread dmitry boyarintsev
Here's the patch for synedit pascal highlighter to support '%' (binary) and '' (octal) as numbers, as shown here: http://imagebin.org/67810 Otherwise the prefix character is colored as symbol rather than as number. thanks, dmitry P.S. sorry, don't have much time for serious development.

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread Martin
Thanks, I will attend to it asap. Usually it is better to attach them to a mantis report. So they will not be lost/overlooked. Martin dmitry boyarintsev wrote: Here's the patch for synedit pascal highlighter to support '%' (binary) and '' (octal) as numbers, as shown here:

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread dmitry boyarintsev
On Thu, Oct 15, 2009 at 12:25 AM, Martin laza...@mfriebe.de wrote: I will attend to it asap.  Usually it is better to attach them to a mantis report. So they will not be lost/overlooked. If it's forgotten, i'll make a bug report. But i was hoping you have some time, for quick fixes :) thanks,

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread David Touzeau
Thanks dmitry the patch works fine !! :=) Message initial De: dmitry boyarintsev skalogryz.li...@gmail.com Reply-to: Lazarus mailing list lazarus@lists.lazarus.freepascal.org À: Lazarus mailing list lazarus@lists.lazarus.freepascal.org Sujet: Re: [Lazarus] fpchmod illegal

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread Martin
dmitry boyarintsev wrote: Here's the patch for synedit pascal highlighter to support '%' (binary) and '' (octal) as numbers, as shown here: http://imagebin.org/67810 Otherwise the prefix character is colored as symbol rather than as number. Applied, in 22180, thanks. slightly improved, the