emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [Patch] Fix handling of variable capture location


From: Nicolas Goaziou
Subject: Re: [O] [Patch] Fix handling of variable capture location
Date: Fri, 19 May 2017 16:16:51 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)

Hello,

Yuri Lensky <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]