Explorar o código

(org-capture-expand-file): Bugfix in cond form.

Bastien Guerry %!s(int64=14) %!d(string=hai) anos
pai
achega
6a6c35a94f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lisp/org-capture.el

+ 1 - 1
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."