unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* readline eats previous text on line
@ 2006-09-27 21:26 Jon Wilson
  2006-09-28  1:40 ` Kevin Ryde
  0 siblings, 1 reply; 16+ messages in thread
From: Jon Wilson @ 2006-09-27 21:26 UTC (permalink / raw)


Hi,
I'm trying to read user input (interactive) using guile.  I'd like to use 
(ice-9 readline), so that the user can use backspace and history and such. 
  I'd also like to have a prompt at the beginning of the line.  These last 
two desires seem to be incompatible, at least mod my best efforts.

For instance, please consider the following:

(use-modules (ice-9 rdelim) (ice-9 format) (ice-9 readline))
(activate-readline)

(define (test)
   (define str #f)
   (display "prompt: ")
   (let loop ((n 1000000))
         (if (not (zero? n)) (loop (1- n))))
   (set! str (read-line))
   (newline)
   (display str))

(test)

This prints "prompt: " on a line, and then after a short time, it is 
erased.  The mess with loop in the middle is of course a crufty time delay, 
without which I can't see "prompt: " at all before it disappears.  After it 
has disappeared, I can type whatever I like, and then press enter. 
Whatever I have typed is then printed as expected, on a new line.

This behavior is unchanged (except for how much text is actually read) when 
I substitute read-char or read in for read-line.

This behavior is gone when I remove (activate-readline).

However, without readline, as I said above, the user cannot backspace, 
which is a great annoyance.

Obviously, however, when the normal guile repl uses readline, it has a 
prompt which is not eaten.  How is this accomplished?

Regards,
Jon


_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2006-12-01 20:24 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-27 21:26 readline eats previous text on line Jon Wilson
2006-09-28  1:40 ` Kevin Ryde
2006-09-28  1:50   ` Jon Wilson
2006-09-28  7:49     ` Neil Jerram
2006-09-29  0:47       ` Kevin Ryde
2006-09-29 22:33         ` Neil Jerram
2006-09-30 12:25           ` Neil Jerram
2006-10-03  0:15             ` Kevin Ryde
2006-10-03  0:52               ` Kevin Ryde
2006-10-04 23:13               ` Kevin Ryde
2006-10-05 23:06                 ` Neil Jerram
2006-10-05 23:35               ` Neil Jerram
2006-10-06  0:03                 ` Kevin Ryde
2006-12-01 20:24                 ` Jon Wilson
2006-10-03  0:22             ` Kevin Ryde
2006-09-28 21:08   ` Jon Wilson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).