From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John Wiegley Newsgroups: gmane.emacs.devel Subject: Re: async.el: A simple asynchronous framework for Emacs Date: Wed, 20 Jun 2012 18:52:49 -0500 Message-ID: References: <87d34tn2ja.fsf@gnuvola.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1340236380 4736 80.91.229.3 (20 Jun 2012 23:53:00 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 20 Jun 2012 23:53:00 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 21 01:53:00 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ShUhl-0007Om-Q3 for ged-emacs-devel@m.gmane.org; Thu, 21 Jun 2012 01:52:57 +0200 Original-Received: from localhost ([::1]:48905 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShUhl-0004IO-Rv for ged-emacs-devel@m.gmane.org; Wed, 20 Jun 2012 19:52:57 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:44446) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShUhi-0004Hv-U2 for emacs-devel@gnu.org; Wed, 20 Jun 2012 19:52:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ShUhh-0002zj-89 for emacs-devel@gnu.org; Wed, 20 Jun 2012 19:52:54 -0400 Original-Received: from mail-yw0-f51.google.com ([209.85.213.51]:39520) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShUhh-0002zX-1Y for emacs-devel@gnu.org; Wed, 20 Jun 2012 19:52:53 -0400 Original-Received: by yhnn12 with SMTP id n12so31900yhn.38 for ; Wed, 20 Jun 2012 16:52:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:references:mail-followup-to:date:in-reply-to :message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=p9Bib6nazjwBk/sAaOBLWk0kiEjq41bczlf+fmgdMpY=; b=ZySRzxIIbgtpGR8Yqx81G04X4Ad9bfGck6pIORSL8RqdQpvOmbMkYGeiNPsupGCVxt D0aq3hP/6Ph60Zzn0BlTsUhaz0pIQFNFksGoN++QkS7SNIx0rsbN/ysUYf/NkwJg51a9 CoRHVxFcm0jlai2HcDGvVT3NxXxDj56cggzLIpYq6vnc0dvoLGQYfezqnM38aOKp//ZU exc+PD01wx5N77liex/i/Xh/Pht7u+0238o7D8Fwm/DpucKX8gKX9ywtA7vD6fWqel2y Mp7GtpLWoc3vpzFDzL0YkiBrYWU/c+Pwh8xvCqcoV7Ql6T14vMHn25AoKxY0PvCtxuB0 kjPw== Original-Received: by 10.236.185.38 with SMTP id t26mr30282417yhm.92.1340236371371; Wed, 20 Jun 2012 16:52:51 -0700 (PDT) Original-Received: from vulcan.local (c-98-215-105-167.hsd1.il.comcast.net. [98.215.105.167]) by mx.google.com with ESMTPS id c28sm64190659yhk.2.2012.06.20.16.52.50 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 20 Jun 2012 16:52:50 -0700 (PDT) Mail-Followup-To: emacs-devel@gnu.org In-Reply-To: <87d34tn2ja.fsf@gnuvola.org> (Thien-Thi Nguyen's message of "Wed, 20 Jun 2012 22:36:57 +0200") User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1 (darwin) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.213.51 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:151064 Archived-At: >>>>> Thien-Thi Nguyen writes: > Playing w/ repls to subprocs, i ran into the (IIRC) 509 byte message limit > and discovered variable =E2=80=98process-connection-type=E2=80=99. Maybe= that is relevant > here? Yes, you found it! Setting process-connection-type to nil made it all work. John