From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kaushal Modi Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Fix (letrec ((ignore))) Date: Fri, 11 Dec 2015 15:08:18 -0500 Message-ID: References: <20151211161116.GA8923@apertron.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1449864548 8337 80.91.229.3 (11 Dec 2015 20:09:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Dec 2015 20:09:08 +0000 (UTC) Cc: Emacs developers To: Zack Piper Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Dec 11 21:09:08 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 1a7U02-00034I-OX for ged-emacs-devel@m.gmane.org; Fri, 11 Dec 2015 21:09:06 +0100 Original-Received: from localhost ([::1]:49354 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7U01-0007hD-Uj for ged-emacs-devel@m.gmane.org; Fri, 11 Dec 2015 15:09:05 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60321) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7Tzv-0007gr-Le for emacs-devel@gnu.org; Fri, 11 Dec 2015 15:09:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a7Tzu-0006Z8-Pa for emacs-devel@gnu.org; Fri, 11 Dec 2015 15:08:59 -0500 Original-Received: from mail-qg0-x22f.google.com ([2607:f8b0:400d:c04::22f]:36394) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7Tzu-0006Z4-L5 for emacs-devel@gnu.org; Fri, 11 Dec 2015 15:08:58 -0500 Original-Received: by qgfb51 with SMTP id b51so782309qgf.3 for ; Fri, 11 Dec 2015 12:08:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=neIZg+rhlkk9O4AeRl7LuQ13fTuyN8+E6uLCzKUPZ1Y=; b=gB8DWG2sl+cKqHd4nWpXu0jPOzeenQvNGShBWgUktKMafD6mBoVUvlXcm/cvxHlgts wEs+qJSNTk3roBcg/OEmSN8wrWP1atx0Zjl+Efk4XxCdFPvuB4qDB/aUuR+CTf6+J1Za CE+LOaadhaZxZEf/9Vge26uIQ/Se3vXF3ZbgQzm8suctjbg9INv4FLP3HkiQnrCnpZAe 9LbnGxPVwfhBA7BY5822XtcZpRR5JIuTQv6HnnOe/0/SIu4vXJb4BKq3WSXtRi/UOhVk w6K7GXYcZrUNkgEyQQn5oXJUAr86DfwZ7cPvI4xjQNw2S6b6qCqDEqBTH0u/de01ii6T 6CPQ== X-Received: by 10.140.143.208 with SMTP id 199mr18465076qhp.84.1449864538419; Fri, 11 Dec 2015 12:08:58 -0800 (PST) Original-Received: by 10.233.235.208 with HTTP; Fri, 11 Dec 2015 12:08:18 -0800 (PST) In-Reply-To: <20151211161116.GA8923@apertron.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2607:f8b0:400d:c04::22f 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:196138 Archived-At: On Fri, Dec 11, 2015 at 11:11 AM, Zack Piper wrote: > Org mode uses `(letrec ((ignore)) ...)' a few times, this introduces Would it be better instead to fix the org-mode files for consistency? - Replace all instances of (letrec ((SOMEVAR)) ..) with (letrec ((SOMEVAR nil)) ..) Question to emacs-devel: What would be the right approach? -- Kaushal Modi