Re: [Chicken-users] Ending input reading without quit csi

2008-01-08 Thread minh thu
2008/1/8, felix winkelmann <[EMAIL PROTECTED]>: > On Jan 8, 2008 12:09 PM, minh thu <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Say I write in csi somethign like > > (for-each-line (lambda (line) (display line))) > > which will read from current-input-port, > > Correct. > > > > > how can I end the i

Re: [Chicken-users] Ending input reading without quit csi

2008-01-08 Thread felix winkelmann
On Jan 8, 2008 12:09 PM, minh thu <[EMAIL PROTECTED]> wrote: > Hi, > > Say I write in csi somethign like > (for-each-line (lambda (line) (display line))) > which will read from current-input-port, Correct. > > how can I end the input (if I use ctrl-d, it stops csi too) ? You will have to handle

[Chicken-users] Ending input reading without quit csi

2008-01-08 Thread minh thu
Hi, Say I write in csi somethign like (for-each-line (lambda (line) (display line))) which will read from current-input-port, how can I end the input (if I use ctrl-d, it stops csi too) ? How can I make csi display another prompt while reading ? Thanks, mt _