diff --git a/lisp/org-capture.el b/lisp/org-capture.el index 9ac929417..f8688ba9c 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -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))))