[Date Prev] [Date Index] [Date Next]
[Thread Prev] [Thread Index] [Thread Next]

[xyzzy:09045] Re: xyzzy で、簡易chat



前田さん、ありがとうございます。

ちょいと理解が覚束ないけど、試してみますです。

---------------------------------------------

(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)
)

Index Home