Re: [fpc-pascal] Readline substitute

2011-12-10 Thread noreply
>> The usual answer for this question is libreadline. I already worked with >> it (in plain C) but before I do a header translation for FreePascal I >> wanted to ask you for your opinion if there is a better alternative or >> anybody already has a header translation or even programmer-friendly >> w

Re: [fpc-pascal] Readline substitute

2011-12-10 Thread Johann Glaser
Hi Krishna! Am Samstag, den 10.12.2011, 12:13 +0530 schrieb Krishna: > On Fri, Apr 29, 2011 at 10:18 PM, Johann Glaser wrote: > > Hi! > > > > I want to equip a program with a command line and therefore want a > > powerful and user-friendly input prompt. Currently I use > > ReadLn(CmdLine); > > w

Re: [fpc-pascal] Readline substitute

2011-12-10 Thread Johann Glaser
Hi Bernd! Am Donnerstag, den 08.12.2011, 20:44 +0100 schrieb Bernd: > 2011/5/1 Johann Glaser : > > > If you find any improvements or comments don't hesitate to send me an > > EMail. > > I just used it. I only needed readline() and add_history(), these two > functions are already enough to make a

Re: [fpc-pascal] Readline substitute

2011-12-09 Thread Krishna
On Fri, Apr 29, 2011 at 10:18 PM, Johann Glaser wrote: > Hi! > > I want to equip a program with a command line and therefore want a > powerful and user-friendly input prompt. Currently I use >  ReadLn(CmdLine); > which is not as user-friendly as desired. :-) > > The usual answer for this question

Re: [fpc-pascal] Readline substitute

2011-12-09 Thread Jonas Maebe
On 09 Dec 2011, at 19:37, nore...@z505.com wrote: > See what happened to common lisp clisp when they used it. Had to change > license to GPL even though they didn't want to. They changed the license because they didn't want to stop using GNU libreadline. If they had switched to a BSD-licensed l

Re: [fpc-pascal] Readline substitute

2011-12-09 Thread noreply
> 2011/5/1 Johann Glaser : > >> If you find any improvements or comments don't hesitate to send me an >> EMail. > > I just used it. I only needed readline() and add_history(), these two > functions are already enough to make a ReadLn() substitute that really > works and It works like a charm! Thank

Re: [fpc-pascal] Readline substitute

2011-12-08 Thread Bernd
2011/5/1 Johann Glaser : > If you find any improvements or comments don't hesitate to send me an > EMail. I just used it. I only needed readline() and add_history(), these two functions are already enough to make a ReadLn() substitute that really works and It works like a charm! Thank you! I thi

Re: [fpc-pascal] Readline substitute

2011-05-01 Thread Johann Glaser
Hi! Am Freitag, den 29.04.2011, 18:48 +0200 schrieb Johann Glaser: > Hi! > > I want to equip a program with a command line and therefore want a > powerful and user-friendly input prompt. Currently I use > ReadLn(CmdLine); > which is not as user-friendly as desired. :-) > > The usual answer for

[fpc-pascal] Readline substitute

2011-04-29 Thread Johann Glaser
Hi! I want to equip a program with a command line and therefore want a powerful and user-friendly input prompt. Currently I use ReadLn(CmdLine); which is not as user-friendly as desired. :-) The usual answer for this question is libreadline. I already worked with it (in plain C) but before I do