org-capture.el: Fix handling of variable capture location

* lisp/org-capture.el (org-capture-expand-file): Fix handling of
  variable capture location.
This commit is contained in:
Yuri D. Lensky 2017-03-12 17:58:15 -07:00 committed by Nicolas Goaziou
parent ab79f112b4
commit 9e4a1704ab
1 changed files with 1 additions and 1 deletions

View File

@ -1060,7 +1060,7 @@ case, raise an error."
(let ((location (cond ((equal file "") org-default-notes-file)
((stringp file) (expand-file-name file org-directory))
((functionp file) (funcall file))
((and (symbolp file) (bound-and-true-p file)))
((and (symbolp file) (boundp file)) (symbol-value file))
(t nil))))
(or (org-string-nw-p location)
(error "Invalid file location: %S" location))))