The most recent change in CVS:
2007-08-28 Matthias Koeppe mkoeppe@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
Austin Haas austin@pettomato.com writes:
The most recent change in CVS:
2007-08-28 Matthias Koeppe mkoeppe@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>
Thanks for the report, I have fixed it in CVS.
Matthias