org-table.el (orgtbl-to-generic): Fix bug when exporting the cells of radio tables with 'hline

* org-table.el (orgtbl-to-generic): Fix bug when exporting the
cells of radio tables with 'hline.

Thanks to David Kincaid for reporting this.
This commit is contained in:
Bastien Guerry 2013-04-04 00:21:31 +02:00
parent 86ce0790a1
commit de4d520610
1 changed files with 6 additions and 4 deletions

View File

@ -4706,10 +4706,12 @@ directly by `orgtbl-send-table'. See manual."
(setq *orgtbl-table*
(mapcar
(lambda(r)
(mapcar
(lambda (c)
(org-trim (org-export-string-as c backend t '(:with-tables t))))
r))
(if (listp r)
(mapcar
(lambda (c)
(org-trim (org-export-string-as c backend t '(:with-tables t))))
r)
r))
*orgtbl-table*)))
;; Put header
(unless splicep