[slime-devel] Bug in slime-repl-insert-prompt
Austin Haas
austin at pettomato.com
Wed Aug 29 00:54:20 UTC 2007
The most recent change in CVS:
2007-08-28 Matthias Koeppe <mkoeppe at mail.math.uni-magdeburg.de>
* slime.el (slime-repl-insert-prompt): Don't go to point-max but
to slime-repl-input-start-mark if there is one. This fixes user
input type-ahead again (this change from 2007-08-25 got lost).
Testcase: Type (dotimes (i 5) (format t "Number ~A~%" i) (sleep
1)) and then type ahead while the command is executing and output
arrives.
causes the output from one expr in the repl to be placed AFTER the next repl prompt.
e.g.,
CL-USER> (+ 1 2)
CL-USER> 3
Desired result:
CL-USER> (+ 1 2)
3
CL-USER>
-austin
More information about the slime-devel
mailing list