Re: Android question: how to connect to swank, running on android?
PR <[email protected]>
| Newsgroups | gmane.lisp.ecl.general |
|---|---|
| Message-ID | <CAOJeB-CKaGVGWWEs2HrWKu3zDyQswyBfFpRoO6Kz7uc624A+3w@mail.gmail.com> |
...and finally the OK: problem solved (thanks to Luís Oliveira / Slime
mailing list):
This would be a possible patch to 'swank.lisp':
(defun repl-input-stream-read (connection stdin)
(loop
(let* ((socket (connection.socket-io connection))
+ (inputs (list socket #-android stdin))
- (inputs (list socket stdin))
(ready (wait-for-input inputs)))
(cond ((eq ready :interrupt)
(check-slime-interrupts))
(quickly tested by me on both Android and PC.)
Paul