net-read-line ??
Posted: Mon Nov 03, 2008 8:30 am
I ran into problem with the tk-macro:
It seems that net-read-line is the problem.
But in the list of (symbols) it appears.
Also in the doc it is not documented.
But in the V10 release doc it is not abandoned.
??
Code: Select all
(define-macro (tk , _result)
(set '_result (append (apply string (map eval (args))) ";##EOT##"))
(net-send SYS:tk-sock '_result)
;; on Unix's we could just use 'read-line', but doesn't work on sockets in win32
(while (starts-with (net-read-line SYS:tk-sock '_result) "VOID-TK:"))
(if (starts-with _result "ERR-TK:") (reset) _result))
Seems not to be defined.> setq
setq <408002>
> net-read-line
nil
But in the list of (symbols) it appears.
Also in the doc it is not documented.
But in the V10 release doc it is not abandoned.
??