From aafb2d2b46ab4aded295ea9a81e8e2840628dc64 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 19 May 2013 09:50:10 +0200 Subject: [PATCH] ox: Fix "Symbol's value as variable is void: org-export--default-title" * lisp/ox.el (org-export--default-title): Fix "Symbol's value as variable is void: org-export--default-title". Bug was introduced in b70e77343aa3daee9312c81c96ef5da217d7fda5. --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index 76f3df9eb..675261237 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -1710,7 +1710,7 @@ Assume buffer is in Org mode. Narrowing, if any, is ignored." ;; Store full path of input file name, or nil. For internal use. (list :input-file (buffer-file-name (buffer-base-buffer)))) -(defvar org-export--default-title) ; Dynamically scoped. +(defvar org-export--default-title nil) ; Dynamically scoped. (defun org-export-store-default-title () "Return default title for current document, as a string. Title is extracted from associated file name, if any, or buffer's -- 2.11.4.GIT