Browse Source

ox-latex: Fix a780080fc

* ox-latex.el (org-latex-template): Empty string for subtitle
  when it is not set.
Rasmus 10 years ago
parent
commit
a12d98e93e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ox-latex.el

+ 1 - 1
lisp/ox-latex.el

@@ -1318,7 +1318,7 @@ holding export options."
 	    (separate (plist-get info :latex-subtitle-separate)))
        (concat
 	(format "\\title{%s%s}\n" title
-		(if separate "" formatted-subtitle))
+		(if separate "" (or formatted-subtitle "")))
 	(when (and separate subtitle)
 	  (concat formatted-subtitle "\n"))))
      ;; Hyperref options.