Re: [fpc-pascal] Userfriendly editor

2011-06-08 Thread Zaher Dirkey
On Wed, Jun 8, 2011 at 3:03 PM, Felipe Monteiro de Carvalho < felipemonteiro.carva...@gmail.com> wrote: > Does anyone know something similar to Notepad++ written in FPC/Lazarus? > > I am working on my MiniEdit, it is not for PHP only, but still need to more of times. http://www.parmaja.com/pages/

Re: [fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread Flávio Etrusco
On Wed, Jun 8, 2011 at 6:17 AM, Jonas Maebe wrote: > > On 08 Jun 2011, at 10:57, Zaher Dirkey wrote: > >> Hi, I know when compile the project with optimize in Delphi the variable >> freed/allocated after the last line used. >> How can i make same in FPC, O3 not worked for me. > > FPC only reuses s

Re: [fpc-pascal] Userfriendly editor

2011-06-08 Thread Felipe Monteiro de Carvalho
Does anyone know something similar to Notepad++ written in FPC/Lazarus? -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread michael . vancanneyt
On Wed, 8 Jun 2011, Zaher Dirkey wrote: On Wed, Jun 8, 2011 at 11:22 AM, wrote: On Wed, 8 Jun 2011, Zaher Dirkey wrote: Hi, I know when compile the project with optimize in Delphi the variable freed/allocated after the last line used. How can i make same in FPC, O3 not worked for me. I

Re: [fpc-pascal] check if process ID is running under BSD

2011-06-08 Thread Marco van de Voort
In our previous episode, Mattias Gaertner said: > > I don't know if it exist a FPC function for that. > > > > i'll do an external commad like " ps -ef | grep bash | grep -v grep | awk > > '{print $8}'". > > Thanks, I knew that. > I prefer a more direct way - for example via a sysctl. > > I need

Re: [fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread Martin
On 08/06/2011 11:37, Zaher Dirkey wrote: On Wed, Jun 8, 2011 at 11:22 AM, > wrote: On Wed, 8 Jun 2011, Zaher Dirkey wrote: Hi, I know when compile the project with optimize in Delphi the variable freed/allocated after the last lin

off topic [Re: [fpc-pascal] Userfriendly editor]

2011-06-08 Thread Martin
preface: Since this is afaik all off-topic, I did set a reply-to to fpc-other. If anyone feels the need to reply to this (my) mail, then please honour it. On 08/06/2011 11:07, reynolight wrote: Yes. My recommendation for EditPlus is valid only for 32 bit Windows or Linux/Wine. But there, nothi

Re: [fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread Zaher Dirkey
On Wed, Jun 8, 2011 at 11:22 AM, wrote: > > > On Wed, 8 Jun 2011, Zaher Dirkey wrote: > > Hi, I know when compile the project with optimize in Delphi the variable >> freed/allocated after the last line used. >> How can i make same in FPC, O3 not worked for me. >> I used FPC 2.4.4 >> >> var >> c

Re: [fpc-pascal] Userfriendly editor

2011-06-08 Thread Rainer Stratmann
Am Wednesday 08 June 2011 12:07:32 schrieb reynolight: > To be honest, I would love it to see just one option, _the_ FreePascal IDE. And IDE and visual development are two different things. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http

Re: [fpc-pascal] Re: Userfriendly editor

2011-06-08 Thread Rainer Stratmann
Am Wednesday 08 June 2011 12:03:12 schrieb Schindler Karl-Michael: > My prime topic in editors is dealing with line endings, because to > my surprise some editors still fail. The behavior I expect is: Why I not use MSEgui is because the cursor does not go behind a line ending. This is a constraint

Re: [fpc-pascal] Userfriendly editor

2011-06-08 Thread Rainer Stratmann
Am Tuesday 07 June 2011 16:00:35 schrieb reynolight: > Am 06.06.2011 22:02, schrieb Rainer Stratmann: > > http://www.geany.org/ > > Screenshots: > > http://www.geany.org/uploads/Gallery/geany_main.png > > http://www.geany.org/uploads/Gallery/geany_build.png > > > > http://www.geany.org/uploads/Gall

Re: [fpc-pascal] Re: Userfriendly editor

2011-06-08 Thread reynolight
Am 08.06.2011 12:03, schrieb Schindler Karl-Michael: > My prime topic in editors is dealing with line endings, because to > my surprise some editors still fail. The behavior I expect is: > > 1) Save in the same format as opened. Definitely no automatic conversion. > (Think of editing files on a sam

Re: [fpc-pascal] Userfriendly editor

2011-06-08 Thread reynolight
Am 07.06.2011 20:02, schrieb Graeme Geldenhuys: > On 7 June 2011 16:00, reynolight wrote: >> If you prefer syntax hilites etc., completely customizable to your >> requirements, go and get EditPlus, www.editplus.com. Even on Wine. > How do you call a FPC 64-bit Linux compiler from a 32-bit WINE edi

[fpc-pascal] Re: Userfriendly editor

2011-06-08 Thread Schindler Karl-Michael
> Message: 4 > Date: Tue, 7 Jun 2011 20:02:20 +0200 > From: Graeme Geldenhuys > Subject: Re: [fpc-pascal] Userfriendly editor > To: FPC-Pascal users discussions > Message-ID: > Content-Type: text/plain; charset=UTF-8 > > How do you call a FPC 64-bit Linux compiler from a 32-bit WINE editor? > T

Re: [fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread michael . vancanneyt
On Wed, 8 Jun 2011, Zaher Dirkey wrote: Hi, I know when compile the project with optimize in Delphi the variable freed/allocated after the last line used. How can i make same in FPC, O3 not worked for me. I used FPC 2.4.4 var c: Currency; begin c := 10; writeln(c); < C (as a currency) i

Re: [fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread Jonas Maebe
On 08 Jun 2011, at 10:57, Zaher Dirkey wrote: Hi, I know when compile the project with optimize in Delphi the variable freed/allocated after the last line used. How can i make same in FPC, O3 not worked for me. FPC only reuses stack slots allocated for temporary expressions. It does not r

[fpc-pascal] When the variable freed in Optimize compile

2011-06-08 Thread Zaher Dirkey
Hi, I know when compile the project with optimize in Delphi the variable freed/allocated after the last line used. How can i make same in FPC, O3 not worked for me. I used FPC 2.4.4 var c: Currency; begin c := 10; writeln(c); <___ fpc-pascal mail

Re: [fpc-pascal] Userfriendly editor

2011-06-08 Thread Graeme Geldenhuys
On 7 June 2011 16:00, reynolight wrote: > If you prefer syntax hilites etc., completely customizable to your > requirements, go and get EditPlus, www.editplus.com. Even on Wine. How do you call a FPC 64-bit Linux compiler from a 32-bit WINE editor? That's where such solutions fall over. Another