home *** CD-ROM | disk | FTP | other *** search
- Xref: sparky gnu.emacs.help:5316 comp.sys.next.software:3377
- Newsgroups: gnu.emacs.help,comp.sys.next.software
- Path: sparky!uunet!spool.mu.edu!uwm.edu!cs.utexas.edu!sun-barr!sh.wide!wnoc-tyo-news!news.u-tokyo.ac.jp!ccut!s.u-tokyo!is.s.u-tokyo!miyasita
- From: miyasita@is.s.u-tokyo.ac.jp (MIYASHITA Ken)
- Subject: Re: webster with emacs 18.59 ?
- References: <7233@ucsbcsl.ucsb.edu> <tom.726164342@dynamo.ecn.purdue.edu>
- <1993Jan8.35445.19302@kei.is.s.u-tokyo.ac.jp>
- Nntp-Posting-Host: beatrice
- Message-ID: <1993Jan11.22909.27849@kei.is.s.u-tokyo.ac.jp>
- Organization: Dept. of Info. Sci., Fac. of Sci, Univ. of Tokyo, Japan.
- In-Reply-To: miyasita@is.s.u-tokyo.ac.jp's message of Fri, 8 Jan 1993
- 03:54:43 GMT
- Sender: news@kei.is.s.u-tokyo.ac.jp (Usenet News System)
- Date: Mon, 11 Jan 1993 02:29:05 GMT
- X-Bytes: 1193
- Lines: 31
-
- In my previsus post, I proposed the solution for the problem with
- webster.el. But I should have mentioned on the article that I also fixed
- telnet.el with the help of Mr. Lennart Lovstrand
- <Lennart_Lovstrand@NeXT.COM>. After replacing the function 'telnet'
- with the following new version, you can get the really working webster
- front end.
-
- (defun telnet (arg)
- "Open a network login connection to host named HOST (a string).
- Communication with HOST is recorded in a buffer *HOST-telnet*.
- Normally input is edited in Emacs and sent a line at a time."
- (interactive "sOpen telnet connection to host: ")
- (require 'shell)
- (let ((name (concat arg "-telnet" )))
- (switch-to-buffer (make-shell name "telnet"))
- (set-process-filter (get-process name) 'telnet-initial-filter)
- (accept-process-output (get-process name))
- (erase-buffer)
- (send-string name (concat "open " arg "\n"))
- (telnet-mode)
- (setq telnet-count -16)))
-
-
- --
-
- Ken MIYASHITA
- miyasita@is.s.u-tokyo.ac.jp
- (Dept. of Info. Sci., Fac. of Sci., Univ. of Tokyo, Japan)
- $@5\2<(J $@7r(J (Japanese Kanji)
- $@El5~Bg3XM}3X7O8&5f2J>pJs2J3X@l96JF_7(J$@8&5f<<(J (Japanese Kanji)
-