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: Tue, 19 Jun 2012 00:36:39 -0500 Message-ID: References: <87k3z3lwc6.fsf@gnuvola.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1340084208 6526 80.91.229.3 (19 Jun 2012 05:36:48 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 19 Jun 2012 05:36:48 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jun 19 07:36:48 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 1Sgr7P-0005e1-8v for ged-emacs-devel@m.gmane.org; Tue, 19 Jun 2012 07:36:47 +0200 Original-Received: from localhost ([::1]:33706 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sgr7P-0007Bg-9I for ged-emacs-devel@m.gmane.org; Tue, 19 Jun 2012 01:36:47 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:51098) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sgr7M-0007BF-Ri for emacs-devel@gnu.org; Tue, 19 Jun 2012 01:36:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sgr7L-0006ek-66 for emacs-devel@gnu.org; Tue, 19 Jun 2012 01:36:44 -0400 Original-Received: from mail-gg0-f169.google.com ([209.85.161.169]:45691) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sgr7K-0006eC-Up for emacs-devel@gnu.org; Tue, 19 Jun 2012 01:36:43 -0400 Original-Received: by ggm4 with SMTP id 4so4978018ggm.0 for ; Mon, 18 Jun 2012 22:36:41 -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; bh=CtJ8dSfb4QsE/U5QOiLsdJth4EgHdwlKfTl51Zi70V4=; b=ARrBnVQWXmMOksAQs3gr5NtE3rpgkrDvTTQTvZiYEd1qjjfg6PUMRM9oMmwvY1cfL1 XYF4wrB8J0G7kRGGsuM8E0CoTG9Dss7k8Xxjrk6BECuIXKc93cxK6Mi2ec8Nf/DAy+NA T9IbHnHtHoAuA7IwviSsLdazh7aH0Kx2+KXVC2aDcRYVYIxQdr0Fs4rlxsrf9T8IWsGp BsZqwohFbRYoSQpu9CdHUAhPfUqO6q30OJDY9N7BWWGS5Ar614ahlG84zHM4DYHsfH1N AM0eLA/n1tFzCcB6IBTJb848TTsDD1OUPlT+PQghDBOQxhr6w35nnADGe8UTdAz6jXmR BbcA== Original-Received: by 10.50.89.198 with SMTP id bq6mr41997igb.28.1340084201279; Mon, 18 Jun 2012 22:36:41 -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 qo3sm19634879igc.8.2012.06.18.22.36.40 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 18 Jun 2012 22:36:40 -0700 (PDT) Original-Received: by vulcan.local (Postfix, from userid 501) id 3B929EF9D105; Tue, 19 Jun 2012 00:36:39 -0500 (CDT) Mail-Followup-To: emacs-devel@gnu.org In-Reply-To: <87k3z3lwc6.fsf@gnuvola.org> (Thien-Thi Nguyen's message of "Tue, 19 Jun 2012 07:11:37 +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.161.169 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:151015 Archived-At: >>>>> Thien-Thi Nguyen writes: > The variable values must be of somewhat limited type, right? They can be anything for which: (assert (equal x (read (prin1-to-string x)))) This excludes unprintable values, most notably buffers, byte-compiled lambdas, windows, frames, etc. John