Browse Source

ox-koma-letter: fix bug introduced in 304a5cb

* ox-koma-letter.el (org-koma-letter-template): Handle empty SUBJECT.
Rasmus 10 years ago
parent
commit
1ce810f9ab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/lisp/ox-koma-letter.el

+ 1 - 1
contrib/lisp/ox-koma-letter.el

@@ -632,7 +632,7 @@ holding export options."
 	       (subject* (org-string-nw-p
 			  (org-export-data
 			   (org-element-parse-secondary-string
-			    (plist-get info :subject)
+			    (or (plist-get info :subject) "")
 			    (org-element-restriction 'keyword))
 			   info)))
 	       (title* (and (plist-get info :with-title)