help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: start-process and set-process-filter sequence


From: William Xu
Subject: Re: start-process and set-process-filter sequence
Date: Thu, 14 Apr 2011 16:22:35 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (windows-nt)

Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:

   something like this:

   (prog1
       (start-process "ls" "ls" "ls")
     (set-process-filter (get-process "ls") 'foo)
     (setq a nil)
     ;(read-string "Mood: ")
     )

It doesn't seem to really fix the problem.  You moved read-string to the
end, if you try:

   (prog1
       (start-process "ls" "ls" "ls")
     (read-string "Mood: ")
     (set-process-filter (get-process "ls") 'foo)
     (setq a nil))

There will still be a similar problem.  

-- 
William

http://xwl.appspot.com




reply via email to

[Prev in Thread] Current Thread [Next in Thread]