From a821f4e922b0018112da807b0d8de283159a421d Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Tue, 22 Feb 2011 13:38:28 +0100 Subject: [PATCH] Fix typo in code --- lisp/org-capture.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index 485c9f9b2..cf4b1826c 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -741,7 +741,7 @@ it. When it is a variable, retrieve the value. Return whatever we get." ((functionp file) (funcall file)) ((and (symbolp file) (boundp file)) (symbol-value file)) ((and file (consp file)) (eval file)) - t file))) + (t file)))) (defun org-capture-target-buffer (file) "Get a buffer for FILE."