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 johann.gla...@gmx.at: 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

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 johann.gla...@gmx.at 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

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 wrapper

Re: [fpc-pascal] Readline substitute

2011-12-09 Thread noreply
2011/5/1 Johann Glaser johann.gla...@gmx.at: 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

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

Re: [fpc-pascal] Readline substitute

2011-12-09 Thread Krishna
On Fri, Apr 29, 2011 at 10:18 PM, Johann Glaser johann.gla...@gmx.at 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

Re: [fpc-pascal] Readline substitute

2011-12-08 Thread Bernd
2011/5/1 Johann Glaser johann.gla...@gmx.at: 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

[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