From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kyle Meyer Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Fix (letrec ((ignore))) Date: Sat, 12 Dec 2015 23:08:40 -0500 Message-ID: <87si37yoqf.fsf@kyleam.com> References: <20151211161116.GA8923@apertron.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1449979752 17429 80.91.229.3 (13 Dec 2015 04:09:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Dec 2015 04:09:12 +0000 (UTC) Cc: Artur Malabarba , , Zack Piper , =?utf-8?Q?Aur=C3=A9lien?= Aptel , Kaushal Modi To: Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Dec 13 05:09:03 2015 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 1a7xy2-0000l9-Lr for ged-emacs-devel@m.gmane.org; Sun, 13 Dec 2015 05:09:02 +0100 Original-Received: from localhost ([::1]:53874 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7xy1-00007d-S0 for ged-emacs-devel@m.gmane.org; Sat, 12 Dec 2015 23:09:01 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35500) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7xxp-00007Q-Po for emacs-devel@gnu.org; Sat, 12 Dec 2015 23:08:50 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a7xxm-0005yE-JR for emacs-devel@gnu.org; Sat, 12 Dec 2015 23:08:49 -0500 Original-Received: from pb-smtp0.int.icgroup.com ([208.72.237.35]:59984 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7xxm-0005y3-FD for emacs-devel@gnu.org; Sat, 12 Dec 2015 23:08:46 -0500 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-smtp0.pobox.com (Postfix) with ESMTP id 2E0D633E8E; Sat, 12 Dec 2015 23:08:45 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=WXHrfW5xC7hCb1hnpS+NOlDoKbo=; b=FHcKLx pPdn3EN/LviDEmWLOyO/ooYVlPppCEAWv+kfiWqw3g6tzHxo0ZeUOknIgdBaLF/n bqB0wXtvbETEyeXyjyOgpmszIF5YcjIeszLtiOgibQIKh5YvwfuCHVgAA4YLYJ8F rgiDMVnFtBaAVwmWJlzCkq+wqya1eXPuj1mRM= Original-Received: from pb-smtp0.int.icgroup.com (unknown [127.0.0.1]) by pb-smtp0.pobox.com (Postfix) with ESMTP id 254F433E8D; Sat, 12 Dec 2015 23:08:45 -0500 (EST) Original-Received: from localhost (unknown [24.60.167.92]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pb-smtp0.pobox.com (Postfix) with ESMTPSA id 9F55633E8C; Sat, 12 Dec 2015 23:08:44 -0500 (EST) X-Attribution: Kyle In-Reply-To: (John Wiegley's message of "Sat, 12 Dec 2015 15:10:05 -0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-Pobox-Relay-ID: 33B4FD9C-A14F-11E5-9597-6BD26AB36C07-24757444!pb-smtp0.pobox.com X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 208.72.237.35 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:196199 Archived-At: John Wiegley writes: > (letrec ((SOMEVAR))) should be an error, since the value is missing. If one > wishes to declare SOMEVAR with a nil value, the correct forms are: > > (letrec ((SOMEVAR nil))) > (letrec (SOMEVAR)) Doesn't the second form currently signal an error? > and then Org and other users should be corrected. Should be fixed in the Org repo as of f57778090. -- Kyle