From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: Re: tree-il begin deprecated? Date: Mon, 16 Jul 2018 00:38:02 -0400 Message-ID: <87sh4jvlqt.fsf@netris.org> References: <5fd355d3-6c1f-4c17-e82e-a15b2ef4d90a@gmail.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1531715834 12899 195.159.176.226 (16 Jul 2018 04:37:14 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 16 Jul 2018 04:37:14 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) Cc: guile-devel@gnu.org To: Matt Wette Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jul 16 06:37:10 2018 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fevG0-0003E2-Us for guile-devel@m.gmane.org; Mon, 16 Jul 2018 06:37:09 +0200 Original-Received: from localhost ([::1]:48801 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fevI7-0005OQ-Se for guile-devel@m.gmane.org; Mon, 16 Jul 2018 00:39:19 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49024) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fevI0-0005O3-1r for guile-devel@gnu.org; Mon, 16 Jul 2018 00:39:12 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fevHw-0006H1-Uj for guile-devel@gnu.org; Mon, 16 Jul 2018 00:39:12 -0400 Original-Received: from world.peace.net ([64.112.178.59]:42982) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fevHw-0006GW-PX for guile-devel@gnu.org; Mon, 16 Jul 2018 00:39:08 -0400 Original-Received: from mhw by world.peace.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1fevHv-0005B3-JK; Mon, 16 Jul 2018 00:39:07 -0400 In-Reply-To: <5fd355d3-6c1f-4c17-e82e-a15b2ef4d90a@gmail.com> (Matt Wette's message of "Sun, 15 Jul 2018 11:17:31 -0700") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 64.112.178.59 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:19601 Archived-At: Hi Matt, Matt Wette writes: > I noticed that from 2.0 to 2.2 the reference manual section on compiling > to tree-il replaced `begin' with `seq'.=C2=A0 Is `begin' going to be depr= ecated? It's not merely deprecated, is no longer part of tree-il in 2.2. However, 'parse-tree-il' still handles 'begin', and converts it to nested forms. Mark