[xyzzy:09045] Re: xyzzy で、簡易chat
- Subject: [xyzzy:09045] Re: xyzzy で、簡易chat
- From: takeharu_yanagiura@xxxxxxxxxxxxxxxxx
- X-mailer: Lotus Notes Release 5.0.12 February 13, 2003
前田さん、ありがとうございます。
ちょいと理解が覚束ないけど、試してみますです。
---------------------------------------------
(defun foo ()
(setq tail-proc (make-process "tail-f [filename]" :output
(selected-buffer)))
(set-process-filter tail-proc 'tail-filter-func)
(read-string)
)
(defun tail-filter-func (proc string)
(message-box "you got message!!" :ok :exclamation)
)