org-latex: Fix export of table.el tables with captions

* lisp/org-latex.el (org-export-latex-convert-table.el-table): Fix
format-string for insertion of captions.

This fixes a bug introduced in caa5da1 since when the caption itself
is not placed inside the caption command.
This commit is contained in:
Lawrence Mitchell 2011-04-06 14:18:58 +00:00 committed by Carsten Dominik
parent 9e15cf4fc2
commit 44bb6ef974
1 changed files with 1 additions and 1 deletions

View File

@ -1990,7 +1990,7 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
(setq tbl (concat "\\begin{center}\n" tbl "\\end{center}")))
(when floatp
(setq tbl (concat "\\begin{table}\n"
(format "\\caption%s{%s}%s\n"
(format "\\caption%s{%s%s}\n"
(if shortn (format "[%s]" shortn) "")
(if label (format "\\label{%s}" label) "")
(or caption ""))