This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: problem with telnet server


The telnet server still crashes, in place of sending back the problem to the
TELNET client.
I doesn't crash for me.

I start up the server:

java kawa.repl --server 6005
Listening on port 6005
waiting ...

I then telnet localhost 6005:

Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
#|kawa:1|# (define (append-tab string) (string-append string "\t"))
#|kawa:2|# (define (get-line start values line end)
#|(---:3|# (if (empty? values) (string-append (append-tab (string-append start line)) end)
#|(---:4|# (get-line (cdr values) (string-append (append-tab line) (car values)))))
<stdin>:4:4: call to 'get-line' has too few arguments (2; must be 4)

#|kawa:5|#

This is with the current CVS version of Kawa.
--
--Per Bothner
per@bothner.com http://www.bothner.com/per/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]