From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: lexical-binding is turned on in more use cases Date: Sun, 08 Mar 2020 22:06:52 +0200 Message-ID: <83fteibogz.fsf@gnu.org> References: <83pndo9zeb.fsf@gnu.org> <83o8t6bx2p.fsf@gnu.org> <83k13ubv3g.fsf@gnu.org> <83imjebsrh.fsf@gnu.org> <20200308193048.GB4832@ACM> <83h7yybppa.fsf@gnu.org> <20200308195620.GC4832@ACM> Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="89309"; mail-complaints-to="usenet@ciao.gmane.io" Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org To: Alan Mackenzie Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Mar 08 21:07:26 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jB2Cs-000N9A-Ar for ged-emacs-devel@m.gmane-mx.org; Sun, 08 Mar 2020 21:07:26 +0100 Original-Received: from localhost ([::1]:33020 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jB2Cr-0006EF-DR for ged-emacs-devel@m.gmane-mx.org; Sun, 08 Mar 2020 16:07:25 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:40428) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jB2CO-0005pU-U0 for emacs-devel@gnu.org; Sun, 08 Mar 2020 16:06:57 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:58520) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jB2CO-0000mW-7w; Sun, 08 Mar 2020 16:06:56 -0400 Original-Received: from [176.228.60.248] (port=4696 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jB2CN-0005fs-Jx; Sun, 08 Mar 2020 16:06:56 -0400 In-Reply-To: <20200308195620.GC4832@ACM> (message from Alan Mackenzie on Sun, 8 Mar 2020 19:56:20 +0000) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:245363 Archived-At: > Date: Sun, 8 Mar 2020 19:56:20 +0000 > From: Alan Mackenzie > Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org > > > Does it help to say > > > M-: (eval (c-align-cpp-indent-to-body)) > > > instead? > > Well, the essential thing was getting a binding of c-syntactic-context > for calling c-align-cpp-indent-to-body. So, I tried: > > M-: (eval (let ((c-syntactic-context (...))) > (c-align-cpp-indent-to-body))) > > , but this didn't help at all. And if you quote the form?