If you set (setq-default enable-multibyte-characters t)
in your emacs (I use FS emacs 21) you will see what has
reported several times: After connecting, the
communication will stop (after 7 tcp packages) and the
process terminates. If you have auto-login on, you
will be banned within minutes.
I did try to poke in tocstr.el without luck. Setting
tnt-string-as-unibyte-available to nil and adding
(set-buffer-multibyte nil) to tocstr-filter seems to
improve things a little - but not enough to make TNT
usable.
Somebody with more knowledge of the mule stuff might
have more luck.
Ulrich
Logged In: NO
This patch seems to help:
--- tocstr.el.bak Fri May 9 13:33:21 2003
+++ tocstr.el Fri May 9 13:23:17 2003
@@ -65,6 +65,7 @@
(setq tocstr-process (open-network-stream "toc" nil host
port))
(set-process-filter tocstr-process 'tocstr-filter)
(set-process-sentinel tocstr-process 'tocstr-sentinel)
+ (set-process-coding-system tocstr-process nil nil)
(process-send-string tocstr-process "FLAPON\r\n\r\n"))