From eff77aa85ea2e812ddc549ba88738d102ef875f6 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 27 Jun 2013 15:35:22 +0200 Subject: [PATCH] org-capture.el (org-capture-set-target-location): Don't throw an error when `org-time-was-given' is not bound * org-capture.el (org-capture-set-target-location): Don't throw an error when `org-time-was-given' is not bound. Thanks to Eric S Fraga for reporting this. --- lisp/org-capture.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index 936883acb..a4f0fd07e 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -909,7 +909,8 @@ Store them in the capture property list." (current-time)))) (org-capture-put :default-time - (cond ((and (not org-time-was-given) + (cond ((and (or (not (boundp 'org-time-was-given)) + (not org-time-was-given)) (not (= (time-to-days prompt-time) (org-today)))) ;; Use 00:00 when no time is given for another date than today? (apply 'encode-time (append '(0 0 0) (cdddr (decode-time prompt-time))))) -- 2.11.4.GIT