浏览代码

ox-latex: Fix a780080fc

* ox-latex.el (org-latex-template): Empty string for subtitle
  when it is not set.
Rasmus 10 年之前
父节点
当前提交
a12d98e93e
共有 1 个文件被更改,包括 1 次插入1 次删除
  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)))
 	    (separate (plist-get info :latex-subtitle-separate)))
        (concat
        (concat
 	(format "\\title{%s%s}\n" title
 	(format "\\title{%s%s}\n" title
-		(if separate "" formatted-subtitle))
+		(if separate "" (or formatted-subtitle "")))
 	(when (and separate subtitle)
 	(when (and separate subtitle)
 	  (concat formatted-subtitle "\n"))))
 	  (concat formatted-subtitle "\n"))))
      ;; Hyperref options.
      ;; Hyperref options.