From 25c591fcc4844d22d92be75ab1e6ee62b1901499 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Mar 2014 10:08:56 +0100 Subject: [PATCH] ox-odt: Ignore blank titles * lisp/ox-odt.el (org-odt-template): Ignore blank titles. --- lisp/ox-odt.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el index 48f0f924b..ef30722a5 100644 --- a/lisp/ox-odt.el +++ b/lisp/ox-odt.el @@ -1502,7 +1502,7 @@ original parsed data. INFO is a plist holding export options." (email (and (plist-get info :with-email) email))) (concat ;; Title. - (when title + (when (org-string-nw-p title) (concat (format "\n%s" "OrgTitle" (format "\n%s" title)) -- 2.11.4.GIT