emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Yuri Lensky <ydl@ydl.cm>
To: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>,
	Yuri Lensky <ydl@ydl.cm>
Subject: Re: [Patch] Fix handling of variable capture location
Date: Fri, 19 May 2017 16:37:25 -0700	[thread overview]
Message-ID: <CAC38U-dV3gf-YnMWT6SOd-2VFedQcFJo53J60j6W9Z0gS+kmYQ@mail.gmail.com> (raw)
In-Reply-To: <87vaoxorsc.fsf@nicolasgoaziou.fr>

[-- Attachment #1: Type: text/plain, Size: 1257 bytes --]

Thanks!

I now understand what you mean by the second call to symbol-value not being
needed. The previous behavior only chose this "branch" of the cond if
symbol-value was not nil. To keep this behavior but only have one call to
symbol-value, why not change to (keep the symbol-value in the cond as
opposed to the body of the branch):

((and (symbolp file) (boundp file) (symbol-value file)))

to keep the old behavior of the cond statement?

YL

On Fri, May 19, 2017 at 7:16 AM, Nicolas Goaziou <mail@nicolasgoaziou.fr>
wrote:

> Hello,
>
> Yuri Lensky <ydl@ydl.cm> writes:
>
> > The second call is indeed needed.
>
> AFAICT, it isn't.
>
>   (cond ('foo) (t nil)) => 'foo
>
> > This is the case fixed by the patch:
> >
> > (setq org-default-notes-file (expand-file-name "~/docs/notes.org"))
> > (setq org-capture-templates '(("t" "Todo" entry (file+olp
> > org-default-notes-file "Inbox") "* TODO %?\n%i")))
>
> OK, I see. I introduced this regression in
> 88a3c2483ee47b342e9bb7d2c1645dce11179bf5.
>
> I applied your patch with a slight change:
>
>   ((and (symbolp file) (boundp file) (symbol-value file)) (symbol-value
> file))
>
> =>
>
>   ((and (symbolp file) (boundp file)) (symbol-value file))
>
> Thank you.
>
> Regards,
>
> --
> Nicolas Goaziou
>

[-- Attachment #2: Type: text/html, Size: 2091 bytes --]

  reply	other threads:[~2017-05-19 23:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-17  0:57 [Patch] Fix handling of variable capture location Yuri Lensky
2017-05-17 12:25 ` Nicolas Goaziou
2017-05-17 18:52   ` Yuri Lensky
2017-05-19 14:16     ` Nicolas Goaziou
2017-05-19 23:37       ` Yuri Lensky [this message]
2017-05-20  6:36         ` Nicolas Goaziou

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

  List information: https://www.orgmode.org/

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

  git send-email \
    --in-reply-to=CAC38U-dV3gf-YnMWT6SOd-2VFedQcFJo53J60j6W9Z0gS+kmYQ@mail.gmail.com \
    --to=ydl@ydl.cm \
    --cc=emacs-orgmode@gnu.org \
    --cc=mail@nicolasgoaziou.fr \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).