all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Eli Zaretskii <eliz@gnu.org>
Cc: Alan Mackenzie <acm@muc.de>, emacs-devel@gnu.org
Subject: Re: lexical-binding is turned on in more use cases
Date: Sun, 08 Mar 2020 19:41:49 -0400	[thread overview]
Message-ID: <jwvpndms9sn.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <83h7yybppa.fsf@gnu.org> (Eli Zaretskii's message of "Sun, 08 Mar 2020 21:40:17 +0200")

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/x-markdown; coding=UTF-8, Size: 828 bytes --]

> Does it help to say
>
>   M-: (eval (c-align-cpp-indent-to-body))
             ^
             '

The quote is of the essence, otherwise you're asking to evaluate the
return value of the expression.

And since the above expression was wrong (it lacked the let binding),
what he should do is either

    M-: (eval '(let ((c-syntactic-context (c-guess-basic-syntax))))
                 (c-align-cpp-indent-to-body)) RET

or use `(defvar c-syntactic-context nil)` somewhere, or

    M-: (progn (defvar c-syntactic-context)
               (let ((c-syntactic-context (c-guess-basic-syntax))))
                 (c-align-cpp-indent-to-body)) RET

or write the `(let ((c-syntactic-context (c-guess-basic-syntax))))
(c-align-cpp-indent-to-body))` inside `cc-cmds.el` or `cc-vars.el`
and use `C-x C-e` there.

or ...


        Stefan




  parent reply	other threads:[~2020-03-08 23:41 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-07 11:29 lexical-binding is turned on in more use cases Eli Zaretskii
2020-03-08 16:35 ` Stefan Monnier
2020-03-08 17:01   ` Eli Zaretskii
2020-03-08 17:33     ` Stefan Monnier
2020-03-08 17:43       ` Eli Zaretskii
2020-03-08 18:20         ` Stefan Monnier
2020-03-08 18:34           ` Eli Zaretskii
2020-03-08 19:30             ` Alan Mackenzie
2020-03-08 19:40               ` Eli Zaretskii
2020-03-08 19:56                 ` Alan Mackenzie
2020-03-08 20:06                   ` Eli Zaretskii
2020-03-08 20:15                     ` Alan Mackenzie
2020-03-11  2:59                       ` Richard Stallman
2020-03-11 12:44                       ` Stefan Monnier
2020-03-08 23:41                 ` Stefan Monnier [this message]
2020-03-08 23:41               ` Stefan Monnier
2020-03-09 20:10                 ` John Wiegley
2020-03-09 21:18                   ` Stefan Monnier
2020-03-09 21:27                     ` Drew Adams
2020-03-09 21:43                       ` Stefan Monnier
2020-03-09 22:30                     ` John Wiegley
2020-03-10 19:13                     ` Alan Mackenzie
2020-03-10 19:49                       ` Andrea Corallo
2020-03-10 20:16                         ` Alan Mackenzie
2020-03-10 20:54                           ` Andrea Corallo
2020-04-07 23:28                             ` Bruno Félix Rezende Ribeiro
2020-03-10 20:41                       ` Stefan Monnier
2020-03-10 21:02                         ` Michael Heerdegen
2020-03-10 21:02                         ` Alan Mackenzie
2020-03-10 21:33                           ` Stefan Monnier
2020-03-11  3:22                           ` Eli Zaretskii
2020-03-10 21:14                       ` Michael Heerdegen
2020-03-10 21:53                         ` Alan Mackenzie
2020-03-10 23:41                           ` Michael Heerdegen
2020-03-11  1:36                             ` Noam Postavsky
2020-03-11  2:02                               ` Michael Heerdegen
2020-03-13  0:46                                 ` Noam Postavsky
2020-03-11  3:06                             ` Richard Stallman
2020-03-11 12:47                               ` Stefan Monnier
2020-03-13  2:32                                 ` Michael Heerdegen
2020-03-11  2:11                           ` Stefan Monnier
2020-03-11 22:39                           ` John Wiegley
2020-03-09 20:22                 ` Alan Mackenzie
2020-03-09 22:05                   ` Stefan Monnier
2020-03-10 18:41                     ` Alan Mackenzie
2020-03-10 19:05                       ` Stefan Monnier
2020-03-10 19:41                         ` Alan Mackenzie
2020-03-10 20:26                           ` Stefan Monnier
2020-03-10 20:44                             ` Alan Mackenzie
2020-03-10 21:30                               ` Stefan Monnier
2020-03-11  3:06                               ` Richard Stallman
2020-03-08 19:39             ` Stefan Monnier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwvpndms9sn.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=acm@muc.de \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.