ox-beamer: Ensure nil is not passed to regexp function

* lisp/ox-beamer.el (org-beamer--format-frame): If contents is nil, then
  replace it with an empty string.
This commit is contained in:
Eric Schulte 2013-04-14 10:28:27 -06:00 committed by Nicolas Goaziou
parent 209e071246
commit 06294c8dac
1 changed files with 1 additions and 1 deletions

View File

@ -518,7 +518,7 @@ used as a communication channel."
;; remove the first word from the contents in the PDF
;; output.
(if (not fragilep) contents
(replace-regexp-in-string "\\`\n*" "\\& " contents))
(replace-regexp-in-string "\\`\n*" "\\& " (or contents "")))
"\\end{frame}")))
(defun org-beamer--format-block (headline contents info)